function remove_nofollow($link, $args, $comment, $post){
return str_replace("rel='nofollow'", "", $link);
}
add_filter('comment_reply_link', 'remove_nofollow', 420, 4);
Jagdish Sarma Asked question October 17, 2023
function remove_nofollow($link, $args, $comment, $post){
return str_replace("rel='nofollow'", "", $link);
}
add_filter('comment_reply_link', 'remove_nofollow', 420, 4);