WordPress NoFollow Links

1 replies
  • SEO
  • |
Is there a way to remove the nofollow tags for all links in WordPress 3.x.x? I've tried numerous plugins but none have managed to strip the nofollow tags.
#links #nofollow #wordpress
  • Profile picture of the author mozzer
    Hello,

    You have to add these lines in the functions.php file of your theme :

    function remove_nofollow($string) {
    $string = str_ireplace(' rel="nofollow"', '', $string);
    return $string;
    }
    add_filter('the_content', 'remove_nofollow');
    add_filter('comment_text', 'remove_nofollow');
    {{ DiscussionBoard.errors[2468008].message }}

Trending Topics