Your built-in WordPress feeds
Just as I've mentioned earlier, luckily for you, feed generation is automated in WordPress. The WordPress installation has a feed generator included. The feed generator generates feeds from posts, comments, and even categories. It also generates all versions of RSS and Atom feeds.
You can find the feed generator for your WordPress blog (that we created in the previous chapter) if you point your browser to any of the following URLs (replace yoursite.com
with the URL of your WordPress installation), and if you have pretty permalinks turned on for your site:
RSS 2.0 feed:
http://yoursite.com/feed/
RDF/RSS 1.0 feed:
http://yoursite.com/feed/rdf/
RSS 0.92 feed:
http://yoursite.com/feed/rss/
Atom feed:
http://yoursite.com/feed/atom/
Comments RSS 2.0 feed:
http://yoursite.com/comments/feed/
If you do not have permalinks turned on for your site, you will need to use the following URLs instead:
RSS 2.0 feed:
http://yoursite.com/?feed=rss2
RDF/RSS 1.0 feed:
http:...