/** * Remove 'nofollow' from the cancel comment reply link ('.cancel-comment-reply-link'). */ function my_remove_nofollow_cancel_link( $formatted_link, $link, $text ) { // The cancel link typically uses double quotes for rel="nofollow" return str_replace( 'rel="nofollow"', '', $formatted_link ); } add_filter( 'cancel_comment_reply_link', 'my_remove_nofollow_cancel_link', 10, 3 );/** * Remove 'nofollow' from the comment reply link ('.comment-reply-link'). */ function my_remove_nofollow_reply_link( $link, $args, $comment, $post ) { // The comment reply link can use single quotes for rel='nofollow' return str_replace( "rel='nofollow'", '', $link ); } add_filter( 'comment_reply_link', 'my_remove_nofollow_reply_link', 100, 4 );