
Wordpress Blogs Default RSS Feed :
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
Any Blogs FeedBurner Feed :
<link rel="alternate" type="application/rss+xml" title="Feedburner Feed" href="http://feeds.feedburner.com/yourfeedburnerid" />
For Blogspot Blogs Feed :
<link rel="alternate" type="application/rss+xml" title="My blogspot posts Feed" href="http://mysite.blogspot.com/feeds/posts/default" />
Wordpress 3.0 and Up :
This is for adding your default feed (the one you get automatically with your wordpress blog)
Open up your themes functions.php and add this code :
// wordpress 3.0 and up
add_theme_support( 'automatic-feed-links' );
<link rel="alternate" type="application/atom+xml" title="Surya☼Chandra☼Gobel - Atom" href="http://suryachandragobel.blogspot.com/feeds/posts/default" />
<link rel="alternate" type="application/rss+xml" title="Surya☼Chandra☼Gobel - RSS" href="http://suryachandragobel.blogspot.com/feeds/posts/default?alt=rss" />

Labels: Tips Blog