2004-05-24 20:24:12 +02:00
|
|
|
<?php
|
|
|
|
|
2004-11-27 01:42:55 +01:00
|
|
|
if (empty($feed)) {
|
2004-02-05 21:55:50 +01:00
|
|
|
$blog = 1;
|
2005-02-11 07:42:07 +01:00
|
|
|
$feed = 'atom';
|
2004-02-05 21:55:50 +01:00
|
|
|
$doing_rss = 1;
|
|
|
|
require('wp-blog-header.php');
|
|
|
|
}
|
|
|
|
|
2004-08-30 09:16:40 +02:00
|
|
|
header('Content-type: application/atom+xml; charset=' . get_settings('blog_charset'), true);
|
2004-05-24 18:49:19 +02:00
|
|
|
$more = 1;
|
2004-02-05 21:55:50 +01:00
|
|
|
|
2003-12-30 13:05:25 +01:00
|
|
|
?>
|
2004-03-29 06:07:33 +02:00
|
|
|
<?php echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>'; ?>
|
2003-12-30 13:05:25 +01:00
|
|
|
<feed version="0.3"
|
|
|
|
xmlns="http://purl.org/atom/ns#"
|
2004-09-05 02:24:28 +02:00
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
2003-12-30 13:05:25 +01:00
|
|
|
<title><?php bloginfo_rss('name') ?></title>
|
2005-01-07 23:01:59 +01:00
|
|
|
<link rel="alternate" type="text/html" href="<?php bloginfo_rss('home') ?>" />
|
2003-12-30 13:05:25 +01:00
|
|
|
<tagline><?php bloginfo_rss("description") ?></tagline>
|
2004-03-30 04:14:45 +02:00
|
|
|
<modified><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT')); ?></modified>
|
|
|
|
<copyright>Copyright <?php echo mysql2date('Y', get_lastpostdate('blog')); ?></copyright>
|
2005-01-07 23:01:59 +01:00
|
|
|
<generator url="http://wordpress.org/" version="<?php bloginfo_rss('version'); ?>">WordPress</generator>
|
2003-12-30 13:05:25 +01:00
|
|
|
|
|
|
|
<?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?>
|
|
|
|
<entry>
|
|
|
|
<author>
|
|
|
|
<name><?php the_author() ?></name>
|
|
|
|
</author>
|
2005-02-12 08:39:31 +01:00
|
|
|
<title type="text/html" mode="escaped"><![CDATA[<?php the_title_rss() ?>]]></title>
|
2003-12-30 13:05:25 +01:00
|
|
|
<link rel="alternate" type="text/html" href="<?php permalink_single_rss() ?>" />
|
2005-01-07 23:01:59 +01:00
|
|
|
<id><?php the_guid(); ?></id>
|
|
|
|
<modified><?php the_time('Y-m-d\TH:i:s\Z'); ?></modified>
|
|
|
|
<issued> <?php the_time('Y-m-d\TH:i:s\Z'); ?></issued>
|
2003-12-30 13:05:25 +01:00
|
|
|
<?php the_category_rss('rdf') ?>
|
2005-01-24 08:33:50 +01:00
|
|
|
<summary type="text/html" mode="escaped"><![CDATA[<?php the_excerpt_rss(); ?>]]></summary>
|
2005-01-05 00:30:10 +01:00
|
|
|
<?php if (!get_settings('rss_use_excerpt')) : ?>
|
|
|
|
<?php if ( strlen( $post->post_content ) ) : ?>
|
2003-12-30 13:05:25 +01:00
|
|
|
<content type="text/html" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_content('', 0, '') ?>]]></content>
|
2005-01-05 00:30:10 +01:00
|
|
|
<?php else : ?>
|
|
|
|
<content type="text/html" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_excerpt_rss(); ?>]]></content>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php else : ?>
|
2005-01-07 23:01:59 +01:00
|
|
|
<content type="text/html" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_excerpt_rss() ?>]]></content>
|
2005-01-05 00:30:10 +01:00
|
|
|
<?php endif; ?>
|
2005-01-09 03:19:30 +01:00
|
|
|
<?php rss_enclosure(); ?>
|
2003-12-30 13:05:25 +01:00
|
|
|
</entry>
|
2004-03-01 07:13:32 +01:00
|
|
|
<?php $items_count++; if (($items_count == get_settings('posts_per_rss')) && empty($m)) { break; } } } ?>
|
2005-01-05 00:30:10 +01:00
|
|
|
</feed>
|