Disable The Comments RSS Feed

#581683
  • Resolved Anonymous
    Rank Math free

    Hi folks,

    How do I do this with your plugin? Disable comments RSS feed.

    Thanks for your help!

    Cheers Jodie

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Thank you for your query and we are so sorry about the trouble this must have caused.

    We don’t have the option to disable the comments feed using our plugin but you can add the following code to the website to remove them programmatically:

    
    function disable_comments_rss_feed( $for_comments ) {
        if ( is_comment_feed() ) {
            return '';
        }
        return $for_comments;
    }
    add_filter( 'commentsrss2_comments_feed', 'disable_comments_rss_feed' );
    

    This code would need to be added to the current theme’s functions.php file.

    Don’t hesitate to get in touch if you have any other questions.

    Anonymous
    Rank Math free

    Hi Miguel,

    Great! That worked, thanks for your help.

    Cheers Jodie

    Hello,

    Glad that everything has been sorted out.

    Please feel free to reach out to us again in case you need any other assistance.

    We are here to help.

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)

The ticket ‘Disable The Comments RSS Feed’ is closed to new replies.