Files
WordPress/wp-atom.php
T

49 lines
2.1 KiB
PHP
Raw Normal View History

<?php
if (empty($feed)) {
2004-02-05 20:55:50 +00:00
$blog = 1;
$doing_rss = 1;
require('wp-blog-header.php');
}
2004-08-30 07:16:40 +00:00
header('Content-type: application/atom+xml; charset=' . get_settings('blog_charset'), true);
$more = 1;
2004-02-05 20:55:50 +00:00
?>
2004-03-29 04:07:33 +00:00
<?php echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>'; ?>
<feed version="0.3"
xmlns="http://purl.org/atom/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<title><?php bloginfo_rss('name') ?></title>
2005-01-07 22:01:59 +00:00
<link rel="alternate" type="text/html" href="<?php bloginfo_rss('home') ?>" />
<tagline><?php bloginfo_rss("description") ?></tagline>
<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 22:01:59 +00:00
<generator url="http://wordpress.org/" version="<?php bloginfo_rss('version'); ?>">WordPress</generator>
<?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?>
<entry>
<author>
<name><?php the_author() ?></name>
</author>
<title><?php the_title_rss() ?></title>
<link rel="alternate" type="text/html" href="<?php permalink_single_rss() ?>" />
2005-01-07 22:01:59 +00: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>
<?php the_category_rss('rdf') ?>
2005-01-07 22:01:59 +00:00
<summary type="text/html" mode="escaped"><?php the_excerpt_rss(); ?></summary>
2005-01-04 23:30:10 +00:00
<?php if (!get_settings('rss_use_excerpt')) : ?>
<?php if ( strlen( $post->post_content ) ) : ?>
<content type="text/html" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_content('', 0, '') ?>]]></content>
2005-01-04 23:30:10 +00: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 22:01:59 +00:00
<content type="text/html" mode="escaped" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_excerpt_rss() ?>]]></content>
2005-01-04 23:30:10 +00:00
<?php endif; ?>
2005-01-09 02:19:30 +00:00
<?php rss_enclosure(); ?>
</entry>
2004-03-01 06:13:32 +00:00
<?php $items_count++; if (($items_count == get_settings('posts_per_rss')) && empty($m)) { break; } } } ?>
2005-01-04 23:30:10 +00:00
</feed>