2004-05-24 14:24:12 -04:00
|
|
|
<?php
|
|
|
|
|
2005-06-10 19:15:13 -04:00
|
|
|
if (empty($wp)) {
|
|
|
|
require_once('wp-config.php');
|
|
|
|
wp('feed=rss2');
|
2004-02-05 15:55:50 -05:00
|
|
|
}
|
2004-05-24 14:24:12 -04:00
|
|
|
|
2004-08-30 03:16:40 -04:00
|
|
|
header('Content-type: text/xml; charset=' . get_settings('blog_charset'), true);
|
2004-05-24 14:24:12 -04:00
|
|
|
$more = 1;
|
2003-11-10 02:44:50 -05:00
|
|
|
|
|
|
|
?>
|
2004-05-24 14:24:12 -04:00
|
|
|
<?php echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>'; ?>
|
2004-04-19 01:20:13 -04:00
|
|
|
|
2005-01-07 17:01:59 -05:00
|
|
|
<!-- generator="wordpress/<?php bloginfo_rss('version') ?>" -->
|
2003-11-10 02:44:50 -05:00
|
|
|
<rss version="2.0"
|
2004-05-10 03:51:50 -04:00
|
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
|
|
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
|
2005-02-10 20:09:41 -05:00
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
2005-06-10 14:45:39 -04:00
|
|
|
<?php do_action('rss2_ns'); ?>
|
2004-05-10 03:51:50 -04:00
|
|
|
>
|
2003-11-10 02:44:50 -05:00
|
|
|
|
|
|
|
<channel>
|
2005-01-07 17:01:59 -05:00
|
|
|
<title><?php bloginfo_rss('name'); ?></title>
|
2003-12-18 03:58:07 -05:00
|
|
|
<link><?php bloginfo_rss('url') ?></link>
|
2003-11-10 02:44:50 -05:00
|
|
|
<description><?php bloginfo_rss("description") ?></description>
|
2005-02-20 23:19:43 -05:00
|
|
|
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></pubDate>
|
2005-01-07 17:01:59 -05:00
|
|
|
<generator>http://wordpress.org/?v=<?php bloginfo_rss('version'); ?></generator>
|
2005-02-13 23:17:12 -05:00
|
|
|
<language><?php echo get_option('rss_language'); ?></language>
|
2005-06-10 14:45:39 -04:00
|
|
|
<?php do_action('rss2_head'); ?>
|
2003-12-18 04:36:13 -05:00
|
|
|
<?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?>
|
2003-11-10 02:44:50 -05:00
|
|
|
<item>
|
|
|
|
<title><?php the_title_rss() ?></title>
|
|
|
|
<link><?php permalink_single_rss() ?></link>
|
|
|
|
<comments><?php comments_link(); ?></comments>
|
2005-02-24 13:29:41 -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>
|
2005-02-10 20:09:41 -05:00
|
|
|
<dc:creator><?php the_author() ?></dc:creator>
|
2003-12-18 03:58:07 -05:00
|
|
|
<?php the_category_rss() ?>
|
2005-01-07 17:01:59 -05:00
|
|
|
|
2005-11-28 19:16:04 -05:00
|
|
|
<guid isPermaLink="false"><?php the_guid(); ?></guid>
|
2004-04-24 16:12:58 -04:00
|
|
|
<?php if (get_settings('rss_use_excerpt')) : ?>
|
2005-01-21 22:45:35 -05:00
|
|
|
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
|
2004-04-24 16:12:58 -04:00
|
|
|
<?php else : ?>
|
2005-01-21 22:45:35 -05:00
|
|
|
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
|
2005-01-08 21:19:30 -05:00
|
|
|
<?php if ( strlen( $post->post_content ) > 0 ) : ?>
|
2003-11-10 02:44:50 -05:00
|
|
|
<content:encoded><![CDATA[<?php the_content('', 0, '') ?>]]></content:encoded>
|
2005-01-08 21:19:30 -05:00
|
|
|
<?php else : ?>
|
|
|
|
<content:encoded><![CDATA[<?php the_excerpt_rss() ?>]]></content:encoded>
|
|
|
|
<?php endif; ?>
|
2004-04-24 16:12:58 -04:00
|
|
|
<?php endif; ?>
|
2006-06-12 22:32:22 -04:00
|
|
|
<wfw:commentRss><?php echo comments_rss(); ?></wfw:commentRss>
|
2005-01-07 17:01:59 -05:00
|
|
|
<?php rss_enclosure(); ?>
|
2005-06-10 14:45:39 -04:00
|
|
|
<?php do_action('rss2_item'); ?>
|
2003-11-10 02:44:50 -05:00
|
|
|
</item>
|
2006-03-12 17:57:00 -05:00
|
|
|
<?php $items_count++; if (($items_count == get_settings('posts_per_rss')) && !is_date()) { break; } } } ?>
|
2003-11-10 02:44:50 -05:00
|
|
|
</channel>
|
2005-01-08 21:19:30 -05:00
|
|
|
</rss>
|