I went ahead and added a bunch of RSS options to my site:
Just click the RSS icon in your browser and you should see the options above.
Update:
If you’re wondering how, all I did was put the rss feed in the header.php file of my theme. Example,
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0 – Main” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0 – Comments” href=”http://feeds.feedburner.com/DanCameroncomments” />
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0 – No mini-posts” href=”http://dancameron.org/category/general/feed/” />
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0 – Pownce” href=”http://pownce.com/feeds/public/DANCAMERON/” />
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0 – Google Shared” href=”http://www.google.com/reader/public/atom/user/17910337670127747913/state/com.google/broadcast” />

