2007-02-23 09:18:30 +01:00
|
|
|
<?php
|
2007-12-25 21:48:01 +01:00
|
|
|
/**
|
|
|
|
* Atom Feed Template for displaying Atom Comments feed.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
2007-02-23 09:18:30 +01:00
|
|
|
header('Content-Type: application/atom+xml; charset=' . get_option('blog_charset'), true);
|
|
|
|
echo '<?xml version="1.0" encoding="' . get_option('blog_charset') . '" ?' . '>';
|
|
|
|
?>
|
|
|
|
<feed
|
|
|
|
xmlns="http://www.w3.org/2005/Atom"
|
|
|
|
xml:lang="<?php echo get_option('rss_language'); ?>"
|
|
|
|
<?php do_action('atom_ns'); ?>
|
|
|
|
>
|
2007-09-04 01:32:58 +02:00
|
|
|
<title type="text"><?php
|
2007-02-24 08:33:29 +01:00
|
|
|
if ( is_singular() )
|
2007-02-23 09:18:30 +01:00
|
|
|
printf(__('Comments on: %s'), get_the_title_rss());
|
2007-02-24 08:33:29 +01:00
|
|
|
elseif ( is_search() )
|
2008-02-13 19:29:10 +01:00
|
|
|
printf(__('Comments for %1$s searching on %2$s'), get_bloginfo_rss( 'name' ), attribute_escape(get_search_query()));
|
2007-02-24 08:33:29 +01:00
|
|
|
else
|
|
|
|
printf(__('Comments for %s'), get_bloginfo_rss( 'name' ) . get_wp_title_rss());
|
2007-02-23 09:18:30 +01:00
|
|
|
?></title>
|
|
|
|
<subtitle type="text"><?php bloginfo_rss('description'); ?></subtitle>
|
2007-02-27 16:24:54 +01:00
|
|
|
|
2007-02-23 09:18:30 +01:00
|
|
|
<updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastcommentmodified('GMT')); ?></updated>
|
2007-10-06 08:55:24 +02:00
|
|
|
<?php the_generator( 'atom' ); ?>
|
2008-02-05 07:47:27 +01:00
|
|
|
|
2007-12-19 19:25:22 +01:00
|
|
|
<?php if ( is_singular() ) { ?>
|
2008-02-13 19:29:10 +01:00
|
|
|
<link rel="alternate" type="<?php bloginfo_rss('html_type'); ?>" href="<?php echo get_comments_link(); ?>" />
|
2007-12-19 19:25:22 +01:00
|
|
|
<link rel="self" type="application/atom+xml" href="<?php echo get_post_comments_feed_link('', 'atom'); ?>" />
|
|
|
|
<id><?php echo get_post_comments_feed_link('', 'atom'); ?></id>
|
2008-02-13 19:29:10 +01:00
|
|
|
<?php } elseif(is_search()) { ?>
|
|
|
|
<link rel="alternate" type="<?php bloginfo_rss('html_type'); ?>" href="<?php echo get_option('home') . '?s=' . attribute_escape(get_search_query()); ?>" />
|
|
|
|
<link rel="self" type="application/atom+xml" href="<?php echo get_search_comments_feed_link('', 'atom'); ?>" />
|
|
|
|
<id><?php echo get_search_comments_feed_link('', 'atom'); ?></id>
|
2007-12-19 19:25:22 +01:00
|
|
|
<?php } else { ?>
|
2007-05-16 19:37:55 +02:00
|
|
|
<link rel="alternate" type="<?php bloginfo_rss('html_type'); ?>" href="<?php bloginfo_rss('home'); ?>" />
|
2007-02-23 09:18:30 +01:00
|
|
|
<link rel="self" type="application/atom+xml" href="<?php bloginfo_rss('comments_atom_url'); ?>" />
|
|
|
|
<id><?php bloginfo_rss('comments_atom_url'); ?></id>
|
2007-12-19 19:25:22 +01:00
|
|
|
<?php } ?>
|
2007-02-23 09:18:30 +01:00
|
|
|
|
|
|
|
<?php
|
2007-02-24 08:33:29 +01:00
|
|
|
if ( have_comments() ) : while ( have_comments() ) : the_comment();
|
|
|
|
$comment_post = get_post($comment->comment_post_ID);
|
|
|
|
get_post_custom($comment_post->ID);
|
2007-02-23 09:18:30 +01:00
|
|
|
?>
|
|
|
|
<entry>
|
|
|
|
<title><?php
|
2007-02-24 08:33:29 +01:00
|
|
|
if ( !is_singular() ) {
|
|
|
|
$title = get_the_title($comment_post->ID);
|
2007-02-23 09:18:30 +01:00
|
|
|
$title = apply_filters('the_title_rss', $title);
|
|
|
|
printf(__('Comment on %1$s by %2$s'), $title, get_comment_author_rss());
|
|
|
|
} else {
|
|
|
|
printf(__('By: %s'), get_comment_author_rss());
|
|
|
|
}
|
|
|
|
?></title>
|
2007-06-01 00:13:06 +02:00
|
|
|
<link rel="alternate" href="<?php comment_link(); ?>" type="<?php bloginfo_rss('html_type'); ?>" />
|
2007-02-27 16:24:54 +01:00
|
|
|
|
2007-02-23 09:18:30 +01:00
|
|
|
<author>
|
|
|
|
<name><?php comment_author_rss(); ?></name>
|
|
|
|
<?php if (get_comment_author_url()) echo '<uri>' . get_comment_author_url() . '</uri>'; ?>
|
2007-02-24 08:33:29 +01:00
|
|
|
|
2007-02-23 09:18:30 +01:00
|
|
|
</author>
|
2007-02-27 16:24:54 +01:00
|
|
|
|
2007-02-23 09:18:30 +01:00
|
|
|
<id><?php comment_link(); ?></id>
|
2007-05-16 19:37:55 +02:00
|
|
|
<updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_comment_time('Y-m-d H:i:s', true), false); ?></updated>
|
|
|
|
<published><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_comment_time('Y-m-d H:i:s', true), false); ?></published>
|
2007-02-24 08:33:29 +01:00
|
|
|
<?php if (!empty($comment_post->post_password) && $_COOKIE['wp-postpass'] != $comment_post->post_password) : ?>
|
2007-02-23 09:18:30 +01:00
|
|
|
<content type="html" xml:base="<?php comment_link(); ?>"><![CDATA[<?php echo get_the_password_form(); ?>]]></content>
|
2007-02-24 08:33:29 +01:00
|
|
|
<?php else : // post pass ?>
|
2007-02-23 09:18:30 +01:00
|
|
|
<content type="html" xml:base="<?php comment_link(); ?>"><![CDATA[<?php comment_text(); ?>]]></content>
|
2007-02-24 08:33:29 +01:00
|
|
|
<?php endif; // post pass
|
|
|
|
do_action('comment_atom_entry', $comment->comment_ID, $comment_post->ID);
|
2007-02-23 09:18:30 +01:00
|
|
|
?>
|
2007-02-24 08:33:29 +01:00
|
|
|
</entry>
|
|
|
|
<?php endwhile; endif; ?>
|
|
|
|
</feed>
|