2004-05-24 20:24:12 +02:00
|
|
|
<?php
|
|
|
|
|
2004-11-27 01:42:55 +01:00
|
|
|
if (empty($feed)) {
|
|
|
|
$blog = 1;
|
2005-02-11 07:42:07 +01:00
|
|
|
$feed = 'rss2';
|
2004-11-27 01:42:55 +01:00
|
|
|
$doing_rss = 1;
|
|
|
|
require('wp-blog-header.php');
|
2004-02-05 21:55:50 +01:00
|
|
|
}
|
2004-05-24 20:24:12 +02:00
|
|
|
|
2004-08-30 09:16:40 +02:00
|
|
|
header('Content-type: text/xml; charset=' . get_settings('blog_charset'), true);
|
2004-05-24 20:24:12 +02:00
|
|
|
$more = 1;
|
2003-11-10 08:44:50 +01:00
|
|
|
|
|
|
|
?>
|
2004-05-24 20:24:12 +02:00
|
|
|
<?php echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>'; ?>
|
2004-04-19 07:20:13 +02:00
|
|
|
|
2005-01-07 23:01:59 +01:00
|
|
|
<!-- generator="wordpress/<?php bloginfo_rss('version') ?>" -->
|
2003-11-10 08:44:50 +01:00
|
|
|
<rss version="2.0"
|
2004-05-10 09:51:50 +02:00
|
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
|
|
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
|
2005-02-11 02:09:41 +01:00
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
2004-05-10 09:51:50 +02:00
|
|
|
>
|
2003-11-10 08:44:50 +01:00
|
|
|
|
|
|
|
<channel>
|
2005-01-07 23:01:59 +01:00
|
|
|
<title><?php bloginfo_rss('name'); ?></title>
|
2003-12-18 09:58:07 +01:00
|
|
|
<link><?php bloginfo_rss('url') ?></link>
|
2003-11-10 08:44:50 +01:00
|
|
|
<description><?php bloginfo_rss("description") ?></description>
|
2004-05-22 00:32:58 +02:00
|
|
|
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), 0); ?></pubDate>
|
2005-01-07 23:01:59 +01:00
|
|
|
<generator>http://wordpress.org/?v=<?php bloginfo_rss('version'); ?></generator>
|
2003-11-10 08:44:50 +01:00
|
|
|
|
2003-12-18 10:36:13 +01:00
|
|
|
<?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?>
|
2003-11-10 08:44:50 +01:00
|
|
|
<item>
|
|
|
|
<title><?php the_title_rss() ?></title>
|
|
|
|
<link><?php permalink_single_rss() ?></link>
|
|
|
|
<comments><?php comments_link(); ?></comments>
|
2005-01-24 07:26:55 +01:00
|
|
|
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_the_time('Y-m-d H:i:s')); ?></pubDate>
|
2005-02-11 02:09:41 +01:00
|
|
|
<dc:creator><?php the_author() ?></dc:creator>
|
2003-12-18 09:58:07 +01:00
|
|
|
<?php the_category_rss() ?>
|
2005-01-07 23:01:59 +01:00
|
|
|
|
2004-04-21 06:12:55 +02:00
|
|
|
<guid><?php the_permalink($id); ?></guid>
|
2004-04-24 22:12:58 +02:00
|
|
|
<?php if (get_settings('rss_use_excerpt')) : ?>
|
2005-01-22 04:45:35 +01:00
|
|
|
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
|
2004-04-24 22:12:58 +02:00
|
|
|
<?php else : ?>
|
2005-01-22 04:45:35 +01:00
|
|
|
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
|
2005-01-09 03:19:30 +01:00
|
|
|
<?php if ( strlen( $post->post_content ) > 0 ) : ?>
|
2003-11-10 08:44:50 +01:00
|
|
|
<content:encoded><![CDATA[<?php the_content('', 0, '') ?>]]></content:encoded>
|
2005-01-09 03:19:30 +01:00
|
|
|
<?php else : ?>
|
|
|
|
<content:encoded><![CDATA[<?php the_excerpt_rss() ?>]]></content:encoded>
|
|
|
|
<?php endif; ?>
|
2004-04-24 22:12:58 +02:00
|
|
|
<?php endif; ?>
|
2004-05-10 09:51:50 +02:00
|
|
|
<wfw:commentRSS><?php echo comments_rss(); ?></wfw:commentRSS>
|
2005-01-07 23:01:59 +01:00
|
|
|
<?php rss_enclosure(); ?>
|
2003-11-10 08:44:50 +01:00
|
|
|
</item>
|
2004-03-01 07:13:32 +01:00
|
|
|
<?php $items_count++; if (($items_count == get_settings('posts_per_rss')) && empty($m)) { break; } } } ?>
|
2003-11-10 08:44:50 +01:00
|
|
|
</channel>
|
2005-01-09 03:19:30 +01:00
|
|
|
</rss>
|