Beginner's Guide for WordPress / Start your WordPress Blog in minutes

How to Setup Auto Discovery for Your WordPress RSS Feeds

Do you notice when you visit WPBeginner, on the URL bar there is a RSS Icon. Often you will see this icon on sites that have set their RSS Feeds on auto discovery. By setting auto-discovery you are encouraging your users to subscribe, and also you are informing those who don’t know to subscribe as well. Most themes ignore this feature which might be a single most important feature that you should have in your themes. In this tutorial, we will show you how you can setup auto discovery for your WordPress RSS Feeds.

RSS Auto Discovery

Open your header.php and paste the following codes above the </head> code.

    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo(‘rss2_url’); ?>" />

    <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo(‘rss_url’); ?>" />

    <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo(‘atom_url’); ?>" />

    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’); ?> RSS Comments Feed" href="<?php bloginfo(‘comments_rss2_url’); ?>" />

Many credible sites in the industry has taken this step to ensure that their readers subscribe to their sites. You should check if these codes are in your header file, if not then then you should add it. Don’t forget if you want to track your RSS Subscribers, then you should redirect your feeds to FeedBurner.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

7 CommentsLeave a Reply

  1. I don’t think you mean below the /head code… I think you mean above it? As in, still within the head tags?? Let me know if I am misunderstanding something.

      • Would you mind correcting the entry? It’s only been about 3 years now.

        I’ve blown 45 minutes trying to corroborate the above or below /head tag and just for giggles, scrolled down to read comments. No offense, but failing to correct the entry doesn’t give your site credibility. I have a technical site too but I don’t force my visitors to do any more work than they have to. The easier I make it, the more likely they are to give me money. Just sayin…

Leave a Reply to kf Cancel reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.