2007-02-22 21:50:05 -05:00
|
|
|
<?php
|
2007-12-25 15:48:01 -05:00
|
|
|
/**
|
|
|
|
* RSS2 Feed Template for displaying RSS2 Posts feed.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
2009-05-16 01:15:21 -04:00
|
|
|
header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true);
|
2007-02-22 21:50:05 -05:00
|
|
|
$more = 1;
|
|
|
|
|
2009-04-16 14:47:41 -04:00
|
|
|
echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
|
2007-02-22 21:50:05 -05:00
|
|
|
|
|
|
|
<rss version="2.0"
|
|
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
|
|
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
|
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
2007-10-20 06:35:44 -04:00
|
|
|
xmlns:atom="http://www.w3.org/2005/Atom"
|
2008-08-11 16:50:41 -04:00
|
|
|
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
|
2009-05-11 15:42:47 -04:00
|
|
|
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
|
2007-02-22 21:50:05 -05:00
|
|
|
<?php do_action('rss2_ns'); ?>
|
|
|
|
>
|
|
|
|
|
|
|
|
<channel>
|
2007-03-28 21:29:09 -04:00
|
|
|
<title><?php bloginfo_rss('name'); wp_title_rss(); ?></title>
|
2008-03-11 14:18:22 -04:00
|
|
|
<atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
|
2007-02-22 21:50:05 -05:00
|
|
|
<link><?php bloginfo_rss('url') ?></link>
|
|
|
|
<description><?php bloginfo_rss("description") ?></description>
|
2009-05-05 16:38:47 -04:00
|
|
|
<lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate>
|
2012-01-29 14:56:33 -05:00
|
|
|
<language><?php bloginfo_rss( 'language' ); ?></language>
|
2008-08-11 16:50:41 -04:00
|
|
|
<sy:updatePeriod><?php echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod>
|
|
|
|
<sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency>
|
2007-02-22 21:50:05 -05:00
|
|
|
<?php do_action('rss2_head'); ?>
|
|
|
|
<?php while( have_posts()) : the_post(); ?>
|
|
|
|
<item>
|
|
|
|
<title><?php the_title_rss() ?></title>
|
2007-08-21 14:27:45 -04:00
|
|
|
<link><?php the_permalink_rss() ?></link>
|
2010-05-26 13:47:29 -04:00
|
|
|
<comments><?php comments_link_feed(); ?></comments>
|
2007-02-22 21:50:05 -05:00
|
|
|
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_post_time('Y-m-d H:i:s', true), false); ?></pubDate>
|
|
|
|
<dc:creator><?php the_author() ?></dc:creator>
|
2010-10-26 16:15:18 -04:00
|
|
|
<?php the_category_rss('rss2') ?>
|
2007-02-22 21:50:05 -05:00
|
|
|
|
2010-05-26 13:27:18 -04:00
|
|
|
<guid isPermaLink="false"><?php the_guid(); ?></guid>
|
2007-02-22 21:50:05 -05:00
|
|
|
<?php if (get_option('rss_use_excerpt')) : ?>
|
|
|
|
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
|
|
|
|
<?php else : ?>
|
|
|
|
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
|
|
|
|
<?php if ( strlen( $post->post_content ) > 0 ) : ?>
|
2009-09-28 10:36:48 -04:00
|
|
|
<content:encoded><![CDATA[<?php the_content_feed('rss2') ?>]]></content:encoded>
|
2007-02-22 21:50:05 -05:00
|
|
|
<?php else : ?>
|
|
|
|
<content:encoded><![CDATA[<?php the_excerpt_rss() ?>]]></content:encoded>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php endif; ?>
|
2010-05-26 13:47:29 -04:00
|
|
|
<wfw:commentRss><?php echo esc_url( get_post_comments_feed_link(null, 'rss2') ); ?></wfw:commentRss>
|
2009-05-11 15:42:47 -04:00
|
|
|
<slash:comments><?php echo get_comments_number(); ?></slash:comments>
|
2007-02-22 21:50:05 -05:00
|
|
|
<?php rss_enclosure(); ?>
|
|
|
|
<?php do_action('rss2_item'); ?>
|
|
|
|
</item>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</channel>
|
|
|
|
</rss>
|