By default, WordPress comes with various feeds. They are generated by template tag for bloginfo() for each type of feed and are typically listed in the sidebar and/or footer of most WordPress Themes. They look like this:
URL for RDF/RSS 1.0 feed (
http://purl.org/rss/1.0/)
<?php bloginfo('rdf_url'); ?>
URL for RSS 0.92 feed (
http://www.rssboard.org/rss-0-9-2)
<?php bloginfo('rss_url'); ?>
URL for RSS 2.0 feed (
http://www.rssboard.org/rss-specification)
<?php bloginfo('rss2_url'); ?>
URL for Atom feed (
http://www.atomenabled.org/)
<?php bloginfo('atom_url'); ?>
URL for comments RSS 2.0 feed
<?php bloginfo('comments_rss2_url'); ?>
The first four feeds display recent updates and changes to your site's content for the different feedreaders. Of these, the RSS feeds are the most well known. The last feed example is used by RSS 2.0 feedreaders and does not show your site's content. It only shows the comments made on your site.