Get upto 80% discount on Rocket fast SSD hostings, Click here

Excluded by ‘Noindex’ Tag Error In Search Console

To remove feed urls whowing error for No index tag use the code below (add the code in functions.php file)

You can use this code with Any seo plugin (Yoast SEO & rankmath included) to remove the feed urls

function disable_wordpress_feeds() {
    wp_die( __('No feed available, please visit the homepage.') );
}

add_action('do_feed', 'disable_wordpress_feeds', 1);
add_action('do_feed_rdf', 'disable_wordpress_feeds', 1);
add_action('do_feed_rss', 'disable_wordpress_feeds', 1);
add_action('do_feed_rss2', 'disable_wordpress_feeds', 1);
add_action('do_feed_atom', 'disable_wordpress_feeds', 1);


Spread the love

2 thoughts on “Excluded by ‘Noindex’ Tag Error In Search Console”

Leave a Comment

Your email address will not be published. Required fields are marked *