2007-02-23 03:50:05 +01:00
|
|
|
<?php
|
2007-12-25 21:48:01 +01:00
|
|
|
/**
|
|
|
|
* RSS2 Feed Template for displaying RSS2 Comments feed.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
2015-05-09 08:39:24 +02:00
|
|
|
header('Content-Type: ' . feed_content_type('rss2') . '; charset=' . get_option('blog_charset'), true);
|
2007-02-23 03:50:05 +01:00
|
|
|
|
2007-09-04 01:32:58 +02:00
|
|
|
echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>';
|
2014-07-07 12:18:15 +02:00
|
|
|
|
|
|
|
/** This action is documented in wp-includes/feed-rss2.php */
|
|
|
|
do_action( 'rss_tag_pre', 'rss2-comments' );
|
2007-02-23 03:50:05 +01:00
|
|
|
?>
|
2007-09-04 01:32:58 +02:00
|
|
|
<rss version="2.0"
|
2007-08-16 20:34:57 +02:00
|
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
2007-10-20 12:35:44 +02:00
|
|
|
xmlns:atom="http://www.w3.org/2005/Atom"
|
2008-08-11 22:50:41 +02:00
|
|
|
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
|
2013-10-25 04:29:52 +02:00
|
|
|
<?php
|
2013-10-25 00:59:20 +02:00
|
|
|
/** This action is documented in wp-includes/feed-rss2.php */
|
2013-09-21 01:02:09 +02:00
|
|
|
do_action( 'rss2_ns' );
|
|
|
|
?>
|
|
|
|
|
2013-10-25 04:29:52 +02:00
|
|
|
<?php
|
2013-09-21 01:02:09 +02:00
|
|
|
/**
|
|
|
|
* Fires at the end of the RSS root to add namespaces.
|
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*/
|
|
|
|
do_action( 'rss2_comments_ns' );
|
|
|
|
?>
|
|
|
|
>
|
2007-02-23 03:50:05 +01:00
|
|
|
<channel>
|
2007-02-24 08:33:29 +01:00
|
|
|
<title><?php
|
|
|
|
if ( is_singular() )
|
2012-07-25 20:04:17 +02:00
|
|
|
printf( ent2ncr( __( 'Comments on: %s' ) ), get_the_title_rss() );
|
2007-02-24 08:33:29 +01:00
|
|
|
elseif ( is_search() )
|
2012-07-25 20:04:17 +02:00
|
|
|
printf( ent2ncr( __( 'Comments for %1$s searching on %2$s' ) ), get_bloginfo_rss( 'name' ), get_search_query() );
|
2007-02-24 08:33:29 +01:00
|
|
|
else
|
2012-07-25 20:04:17 +02:00
|
|
|
printf( ent2ncr( __( 'Comments for %s' ) ), get_bloginfo_rss( 'name' ) . get_wp_title_rss() );
|
2007-02-24 08:33:29 +01:00
|
|
|
?></title>
|
2008-03-11 19:18:22 +01:00
|
|
|
<atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
|
2007-08-21 20:27:45 +02:00
|
|
|
<link><?php (is_single()) ? the_permalink_rss() : bloginfo_rss("url") ?></link>
|
2007-02-23 03:50:05 +01:00
|
|
|
<description><?php bloginfo_rss("description") ?></description>
|
2015-07-15 21:58:24 +02:00
|
|
|
<lastBuildDate><?php echo mysql2date('r', get_lastcommentmodified('GMT')); ?></lastBuildDate>
|
2014-12-06 22:32:24 +01:00
|
|
|
<sy:updatePeriod><?php
|
|
|
|
/** This filter is documented in wp-includes/feed-rss2.php */
|
|
|
|
echo apply_filters( 'rss_update_period', 'hourly' );
|
|
|
|
?></sy:updatePeriod>
|
|
|
|
<sy:updateFrequency><?php
|
|
|
|
/** This filter is documented in wp-includes/feed-rss2.php */
|
|
|
|
echo apply_filters( 'rss_update_frequency', '1' );
|
|
|
|
?></sy:updateFrequency>
|
2013-10-25 04:29:52 +02:00
|
|
|
<?php
|
2013-09-21 01:02:09 +02:00
|
|
|
/**
|
|
|
|
* Fires at the end of the RSS2 comment feed header.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*/
|
|
|
|
do_action( 'commentsrss2_head' );
|
|
|
|
|
|
|
|
if ( have_comments() ) : while ( have_comments() ) : the_comment();
|
|
|
|
$comment_post = $GLOBALS['post'] = get_post( $comment->comment_post_ID );
|
|
|
|
?>
|
2007-02-23 03:50:05 +01:00
|
|
|
<item>
|
2007-02-24 08:33:29 +01:00
|
|
|
<title><?php
|
|
|
|
if ( !is_singular() ) {
|
|
|
|
$title = get_the_title($comment_post->ID);
|
2013-10-25 00:59:20 +02:00
|
|
|
/** This filter is documented in wp-includes/feed.php */
|
|
|
|
$title = apply_filters( 'the_title_rss', $title );
|
2008-12-04 18:47:50 +01:00
|
|
|
printf(ent2ncr(__('Comment on %1$s by %2$s')), $title, get_comment_author_rss());
|
2007-02-24 08:33:29 +01:00
|
|
|
} else {
|
2008-12-04 18:47:50 +01:00
|
|
|
printf(ent2ncr(__('By: %s')), get_comment_author_rss());
|
2007-02-24 08:33:29 +01:00
|
|
|
}
|
|
|
|
?></title>
|
2007-02-23 03:50:05 +01:00
|
|
|
<link><?php comment_link() ?></link>
|
2013-08-07 15:43:43 +02:00
|
|
|
<dc:creator><![CDATA[<?php echo get_comment_author_rss() ?>]]></dc:creator>
|
2009-05-14 04:00:32 +02:00
|
|
|
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_comment_time('Y-m-d H:i:s', true, false), false); ?></pubDate>
|
2008-02-06 23:33:21 +01:00
|
|
|
<guid isPermaLink="false"><?php comment_guid() ?></guid>
|
2008-11-20 20:10:31 +01:00
|
|
|
<?php if ( post_password_required($comment_post) ) : ?>
|
2008-12-04 18:47:50 +01:00
|
|
|
<description><?php echo ent2ncr(__('Protected Comments: Please enter your password to view comments.')); ?></description>
|
2007-02-23 03:50:05 +01:00
|
|
|
<content:encoded><![CDATA[<?php echo get_the_password_form() ?>]]></content:encoded>
|
2007-02-24 08:33:29 +01:00
|
|
|
<?php else : // post pass ?>
|
2012-07-09 06:25:57 +02:00
|
|
|
<description><![CDATA[<?php comment_text_rss() ?>]]></description>
|
2007-02-23 03:50:05 +01:00
|
|
|
<content:encoded><![CDATA[<?php comment_text() ?>]]></content:encoded>
|
2007-02-24 08:33:29 +01:00
|
|
|
<?php endif; // post pass
|
2013-09-21 01:02:09 +02:00
|
|
|
/**
|
|
|
|
* Fires at the end of each RSS2 comment feed item.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param int $comment->comment_ID The ID of the comment being displayed.
|
|
|
|
* @param int $comment_post->ID The ID of the post the comment is connected to.
|
|
|
|
*/
|
|
|
|
do_action( 'commentrss2_item', $comment->comment_ID, $comment_post->ID );
|
2007-02-23 03:50:05 +01:00
|
|
|
?>
|
2007-02-24 08:33:29 +01:00
|
|
|
</item>
|
|
|
|
<?php endwhile; endif; ?>
|
2007-02-23 03:50:05 +01:00
|
|
|
</channel>
|
|
|
|
</rss>
|