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=atom');
|
2004-02-05 21:55:50 +01:00
|
|
|
}
|
|
|
|
|
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#"
|
2005-02-14 05:17:12 +01:00
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
|
|
xml:lang="<?php echo get_option('rss_language'); ?>"
|
2005-06-10 20:45:39 +02:00
|
|
|
<?php do_action('atom_ns'); ?>
|
2005-02-14 05:17:12 +01:00
|
|
|
>
|
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>
|
2005-02-21 05:19:43 +01:00
|
|
|
<modified><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?></modified>
|
|
|
|
<copyright>Copyright <?php echo mysql2date('Y', get_lastpostdate('blog'), 0); ?></copyright>
|
2005-01-07 23:01:59 +01:00
|
|
|
<generator url="http://wordpress.org/" version="<?php bloginfo_rss('version'); ?>">WordPress</generator>
|
2005-06-10 20:45:39 +02:00
|
|
|
<?php do_action('atom_head'); ?>
|
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>
|
2005-02-27 05:51:32 +01:00
|
|
|
<modified><?php echo get_post_time('Y-m-d\TH:i:s\Z', true); ?></modified>
|
|
|
|
<issued><?php echo get_post_time('Y-m-d\TH:i:s\Z', true); ?></issued>
|
2005-05-07 01:56:45 +02:00
|
|
|
<?php the_category_rss('rdf') ?>
|
2005-05-09 13:11:19 +02:00
|
|
|
<summary type="text/plain" mode="escaped"><![CDATA[<?php the_excerpt_rss(); ?>]]></summary>
|
2005-05-07 01:56:45 +02:00
|
|
|
<?php if ( !get_settings('rss_use_excerpt') ) : ?>
|
2005-02-14 05:36:57 +01:00
|
|
|
<content type="<?php bloginfo('html_type'); ?>" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_content('', 0, '') ?>]]></content>
|
2005-01-05 00:30:10 +01:00
|
|
|
<?php endif; ?>
|
2005-01-09 03:19:30 +01:00
|
|
|
<?php rss_enclosure(); ?>
|
2005-06-10 20:45:39 +02:00
|
|
|
<?php do_action('atom_entry'); ?>
|
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>
|