Is it usual to have a non-Feedburner feed on a WordPress blog?

Is it usual or beneficial to have a non-feedburner feed on the site?

At the moment I have only a feedburner feed.

Read More

My blog is WordPress with a custom template.

Which of these links would I use to create a Feed?:

http://blog.wordfruit.com/?feed=rss

http://blog.wordfruit.com/?feed=rss2

http://blog.wordfruit.com/?feed=rdf

http://blog.wordfruit.com/?feed=atom

Or would it be one of these (for when using custom permalinks)?:

http://blog.wordfruit.com/feed/

http://blog.wordfruit.com/feed/rss/

http://blog.wordfruit.com/feed/rss2/

http://blog.wordfruit.com/feed/rdf/

http://blog.wordfruit.com/feed/atom/

Or a different link?

Also, how do I create the Feed — with the use of a plugin?

Related posts

Leave a Reply

2 comments

  1. To make the choice for users as simple as possible, I recommend using only one feed link. Even I am always confused when having to choose between RSS, RSS 2.0 and Atom. Are there still readers out there that don’t understand all three different formats?

    Whether it links to FeedBurner or not depends on your personal preferences. FeedBurner has advantages: it uses Google’s bandwidth, implements PubSubHubbub for notifying other readers, and has extensive statistics. Some people doubt the long-term future of FeedBurner, but I can’t imagine them stopping it without a long transition period.

    Whether you use the “classic” (?feed=atom) or “pretty” (/atom/) links really should not matter: let it depend on your “Pretty Permalinks” setting.

    You don’t have to create the feeds: WordPress has this functionality built-in. You can customize the output, and would do this with code that hooks into the existing actions and filters. You should also not have to write the feed links yourself: if you enable automatic-feed-links in your theme WordPress will add them in every header.

  2. You can use a combination of the following or, choose one. Place the code after the title and meta tags in your header.php file:

    <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'); ?>" />