How do I remove RSS feeds from themes?

How do I remove RSS feeds from being listed in the HTML source? Like I want to remove the following:

<link rel="alternate" type="application/rss+xml" href="foo.com">

I don’t want to remove the RSS feeds by any means, just the automatic output in the theme.

Related posts

Leave a Reply

1 comment

  1. If the theme is a relatively modern one, find this line of code in the functions.php file and remove it:

    add_theme_support( 'automatic-feed-links' );

    If it’s an older theme, then look in the header.php file for the code that adds those.