The RSS icon appears in the address bar on Safari and Firefox for http://www.brandongreen.com, but not for the site's blog.
I'm not sure if this matters, but we're using Feedburner to create the feed.
Any idea how I can get the RSS icon to appear on the blog page?
Thanks!
This should be in your theme's header.php:
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
That's what makes the rss icon show up properly in the URL bar.
Fantastic--works great. Thanks Otto!