How to Subscribe to RSS Feeds with Internet Explorer 7
Internet Explorer comes with a built-in feedreader. Anytime you see the little orange RSS feed button on the toolbar light up, you know the site has a feed. Watch this 30 second video to see how to subscribe to a single feed using Internet Explore 7.0's built-in feedreader.
You can also import a collection of feeds all at once. A feed collection is stored in an OPML file. Right-click this OPML file and save it to your desktop, and then watch this video for instructions on importing it into IE7's feedreader.
Note for Bloggers
IE7's feedreader autodiscovers your site's feed. In WordPress, your header. php files has the autodiscovery code for your site's feed. If you use Feedburner to syndicate your feed, you must change the autodiscovery links in your header.php file, or else IE7 won't pick up your FeedBurner feed.
In your header file (under Presentation > Theme Editor), look for this:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
Change the text in red to your feedburner feed. For example, the following code shows the insertion of my FeedBurner feed:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://feeds.feedburner.com/tomjohnson" />
<link rel="alternate" type="text/xml" title="RSS .92" href="http://feeds.feedburner.com/tomjohnson" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="http://feeds.feedburner.com/tomjohnson" />
Why Use FeedBurner?
FeedBurner provides several benefits:
- You can see how many people are subscribed to your feed (the main benefit).
- You can provide your feed in multiple formats (both RSS and Atom).
- You can get a little reader chiclet to show off how many readers are subscribed.
- You can offer e-mail notification of your posts.
- You can track site stats.
FeedBurner has a number of other services and features, and most are free.
Note: This WordPress FeedBurner plugin is supposed to automatically reroute your feed through Feedburner, but I noticed that the rerouting didn't work with the IE7 feedreader. Still, it's definitely worthwhile to add this plugin.
<?php bloginfo('rss2_url'); ?>