• To disable the default site-wide comments feed, add the following to your functions.php:

    add_action( 'feed_link', 'remove_comments_feed', 10, 2 );
    
    function remove_comments_feed( $output, $feed ) {
        if ( strpos( $output, 'comments' ) )
            return;
    }

    Hope this is helpful. ??

  • The topic ‘How to disable Comments Feed ONLY’ is closed to new replies.