2004-05-24 20:24:12 +02:00
|
|
|
<?php
|
|
|
|
|
2005-06-11 01:15:13 +02:00
|
|
|
if (empty($wp)) {
|
|
|
|
require_once('wp-config.php');
|
|
|
|
wp('feed=rss');
|
2004-02-05 21:55:50 +01:00
|
|
|
}
|
|
|
|
|
2006-08-30 23:46:31 +02:00
|
|
|
header('Content-type: text/xml; charset=' . get_option('blog_charset'), true);
|
2004-05-24 20:24:12 +02:00
|
|
|
$more = 1;
|
2003-11-11 00:32:02 +01:00
|
|
|
|
|
|
|
?>
|
2006-08-30 23:46:31 +02:00
|
|
|
<?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
|
2003-12-18 10:36:13 +01:00
|
|
|
<!-- generator="wordpress/<?php echo $wp_version ?>" -->
|
2003-11-11 00:32:02 +01:00
|
|
|
<rss version="0.92">
|
2005-02-14 05:17:12 +01:00
|
|
|
<channel>
|
|
|
|
<title><?php bloginfo_rss('name') ?></title>
|
|
|
|
<link><?php bloginfo_rss('url') ?></link>
|
|
|
|
<description><?php bloginfo_rss('description') ?></description>
|
2005-02-21 05:19:43 +01:00
|
|
|
<lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate>
|
2005-02-14 05:17:12 +01:00
|
|
|
<docs>http://backend.userland.com/rss092</docs>
|
|
|
|
<language><?php echo get_option('rss_language'); ?></language>
|
2005-06-10 20:45:39 +02:00
|
|
|
<?php do_action('rss_head'); ?>
|
2003-11-11 00:32:02 +01:00
|
|
|
|
2006-11-14 02:24:27 +01:00
|
|
|
<?php while (have_posts()) : the_post(); ?>
|
2005-02-14 05:17:12 +01:00
|
|
|
<item>
|
|
|
|
<title><?php the_title_rss() ?></title>
|
2006-08-30 23:46:31 +02:00
|
|
|
<?php if (get_option('rss_use_excerpt')) { ?>
|
2005-02-14 05:17:12 +01:00
|
|
|
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
|
|
|
|
<?php } else { // use content ?>
|
2006-08-30 23:46:31 +02:00
|
|
|
<description><?php the_content_rss('', 0, '', get_option('rss_excerpt_length')) ?></description>
|
2005-02-14 05:17:12 +01:00
|
|
|
<?php } ?>
|
|
|
|
<link><?php permalink_single_rss() ?></link>
|
2005-06-10 20:45:39 +02:00
|
|
|
<?php do_action('rss_item'); ?>
|
2005-02-14 05:17:12 +01:00
|
|
|
</item>
|
2006-11-14 02:24:27 +01:00
|
|
|
<?php endwhile; ?>
|
2005-02-14 05:17:12 +01:00
|
|
|
</channel>
|
2004-05-22 00:32:58 +02:00
|
|
|
</rss>
|