How to no follow the paginated comments

I am trying to find a way to add rel="nofollow" to my comments pagination links.
Can anyone provide me with a hook or way to do so?

Related posts

Leave a Reply

1 comment

  1. There are two special filters for that:

    add_filter( 'previous_comments_link_attributes', 'wpse_77217_comment_nofollow' );
    add_filter( 'next_comments_link_attributes', 'wpse_77217_comment_nofollow' );
    
    function wpse_77217_comment_nofollow()
    {
        return ' rel="nofollow"';
    }