Editing the Comment Reply Link

functions.php:

function remove_nofollow($link, $args, $comment, $post){
  return str_replace("rel="nofollow"", "", $link);
}

add_filter('comment_reply_link', 'remove_nofollow', 420, 4);

Leave a Comment