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=rss2');
|
2004-02-05 21:55:50 +01:00
|
|
|
}
|
2004-05-24 20:24:12 +02: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-10 08:44:50 +01:00
|
|
|
|
|
|
|
?>
|
2006-08-30 23:46:31 +02:00
|
|
|
<?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
|
2004-04-19 07:20:13 +02:00
|
|
|
|
2005-01-07 23:01:59 +01:00
|
|
|
<!-- generator="wordpress/<?php bloginfo_rss('version') ?>" -->
|
2006-11-19 08:56:05 +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/"
|
2005-06-10 20:45:39 +02:00
|
|
|
<?php do_action('rss2_ns'); ?>
|
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>
|
2005-02-21 05:19:43 +01:00
|
|
|
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></pubDate>
|
2005-01-07 23:01:59 +01:00
|
|
|
<generator>http://wordpress.org/?v=<?php bloginfo_rss('version'); ?></generator>
|
2005-02-14 05:17:12 +01:00
|
|
|
<language><?php echo get_option('rss_language'); ?></language>
|
2005-06-10 20:45:39 +02:00
|
|
|
<?php do_action('rss2_head'); ?>
|
2006-11-14 02:24:27 +01:00
|
|
|
<?php while( have_posts()) : the_post(); ?>
|
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-02-24 19:29:41 +01: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-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
|
|
|
|
2005-11-29 01:16:04 +01:00
|
|
|
<guid isPermaLink="false"><?php the_guid(); ?></guid>
|
2006-08-30 23:46:31 +02:00
|
|
|
<?php if (get_option('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 ) : ?>
|
2006-09-12 01:59:00 +02:00
|
|
|
<content:encoded><![CDATA[<?php the_content() ?>]]></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; ?>
|
2006-06-13 04:32:22 +02:00
|
|
|
<wfw:commentRss><?php echo comments_rss(); ?></wfw:commentRss>
|
2005-01-07 23:01:59 +01:00
|
|
|
<?php rss_enclosure(); ?>
|
2005-06-10 20:45:39 +02:00
|
|
|
<?php do_action('rss2_item'); ?>
|
2003-11-10 08:44:50 +01:00
|
|
|
</item>
|
2006-11-14 02:24:27 +01:00
|
|
|
<?php endwhile; ?>
|
2003-11-10 08:44:50 +01:00
|
|
|
</channel>
|
2005-01-09 03:19:30 +01:00
|
|
|
</rss>
|