To those who are using Sage feed reader (the Firefox extension) will notice that it can only get the usual feeds that’s built into your blog application. For WordPress, that’s just RSS 2.0, RSS 0.92 and Atom 0.3.
However, if you use Feedburner and you want readers to be able to subscribe to that using Sage, you will need to add one line of code into your blog’s < header > tag.
It should look like this:
thru Feedburner" href="http://YourFeedburner URL" />
In WordPress, you can find that inside your index.php (or header.php) depending on the theme.
That line of code should be placed along the other three feeds here:
2.0" href="<?php bloginfo(‘rss2_url’); ?>" />
</link><link rel="alternate" type="text/xml" title="RSS
.92" href="<?php bloginfo(‘rss_url’); ?>" />
</link><link rel="alternate" type="application/atom+xml"
title="Atom 0.3" href="<?php bloginfo(‘atom_url’); ?>"
/></link>
The result should look like this:
%blog_comment%