Rel Nofollow

Rel Nofollow Install Statistics

56
100%
Today: 56 Yesterday: 0 All-time: 25,671 downloads
Rel Nofollow Icon

Try plugin: Rel Nofollow

We'll create fresh WordPress site with Rel Nofollow installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About Rel Nofollow

Adds rel="nofollow" to posts external links unless specified otherwise.

4


0


0


0


0

updated: 1 year ago
since: 10 years ago

Description

When a post is saved, the plugin adds the rel=”nofollow” attributes to post external links. The plugin also provides an apt checkbox to exclude a post from plugin’s action.

Links which already have a rel attribute are just ignored, so you can set some dofollows are well.

By default, the plugin will only act on posts, no pages or other custom post types. To include (some of) them, use a code like the following, for ex. by putting it in your theme’s functions.php:

add_filter( 'rnf_post_types', function( $post_types ) {
    return array( 'post', 'page' ); #specify all desired CPTs, comma-separated
});