Comment on Technical Support by SEO Dave.

WordPress Technical Support RSS Autodiscovery is built into Stallion already.

Under “Stallion >> Layout Options”, section “Advanced WordPress Settings >> Clean the Header Code” untick “automatic-feed-links Off: Removes Automatic Feed Links (OFF).”

You’ll see code like this in the head when viewing source:

<link rel="alternate" type="application/rss+xml" title="Stallion 6.1 Test Site &raquo; Feed" href="http://www.stallion-theme.com/feed" />
<link rel="alternate" type="application/rss+xml" title="Stallion 6.1 Test Site &raquo; Comments Feed" href="http://www.stallion-theme.com/comments/feed" />

This covers the main RSS feed and the comments feed.

This isn’t built into WordPress by default (it’s available, but requires code adding to the theme or a plugin to activate), for non-Stallion theme users add this to the bottom of your functions.php file:

<?php add_theme_support( 'automatic-feed-links' );?>

David