2003-09-28 20:19:10 +02:00
|
|
|
<?php
|
2004-11-27 01:42:55 +01:00
|
|
|
if ( empty($feed) ) {
|
2004-10-14 10:27:56 +02:00
|
|
|
$withcomments = 1;
|
2004-11-27 01:42:55 +01:00
|
|
|
require('wp-blog-header.php');
|
2004-02-05 21:55:50 +01:00
|
|
|
}
|
|
|
|
|
2004-08-30 09:16:40 +02:00
|
|
|
header('Content-type: text/xml;charset=' . get_settings('blog_charset'), true);
|
2003-09-28 20:19:10 +02:00
|
|
|
|
2004-04-02 19:44:06 +02:00
|
|
|
echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>';
|
2003-09-28 20:19:10 +02:00
|
|
|
?>
|
2003-12-18 10:36:13 +01:00
|
|
|
<!-- generator="wordpress/<?php echo $wp_version ?>" -->
|
2003-09-28 20:19:10 +02:00
|
|
|
<rss version="2.0"
|
|
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
|
|
|
<channel>
|
|
|
|
<?php
|
|
|
|
$i = 0;
|
2004-12-14 10:48:34 +01:00
|
|
|
if ($posts) { foreach ($posts as $post) { start_wp();
|
2003-09-28 20:19:10 +02:00
|
|
|
if ($i < 1) {
|
|
|
|
$i++;
|
|
|
|
?>
|
2004-10-10 20:41:39 +02:00
|
|
|
<title><?php if (is_single()) { echo "Comments on: "; the_title_rss(); } else { bloginfo_rss("name"); echo " Comments"; } ?></title>
|
|
|
|
<link><?php (is_single()) ? permalink_single_rss() : bloginfo_rss("url") ?></link>
|
2003-09-28 20:19:10 +02:00
|
|
|
<description><?php bloginfo_rss("description") ?></description>
|
2004-02-20 21:46:55 +01:00
|
|
|
<pubDate><?php echo gmdate('r'); ?></pubDate>
|
|
|
|
<generator>http://wordpress.org/?v=<?php echo $wp_version ?></generator>
|
2003-09-28 20:19:10 +02:00
|
|
|
|
|
|
|
<?php
|
2004-10-10 20:41:39 +02:00
|
|
|
if (is_single()) {
|
2004-02-20 21:46:55 +01:00
|
|
|
$comments = $wpdb->get_results("SELECT comment_ID, comment_author, comment_author_email,
|
|
|
|
comment_author_url, comment_date, comment_content, comment_post_ID,
|
2004-05-24 10:22:18 +02:00
|
|
|
$wpdb->posts.ID, $wpdb->posts.post_password FROM $wpdb->comments
|
|
|
|
LEFT JOIN $wpdb->posts ON comment_post_id = id WHERE comment_post_ID = '$id'
|
|
|
|
AND $wpdb->comments.comment_approved = '1' AND $wpdb->posts.post_status = 'publish'
|
2004-04-24 23:52:24 +02:00
|
|
|
AND post_date < '".date("Y-m-d H:i:59")."'
|
2004-03-01 07:13:32 +01:00
|
|
|
ORDER BY comment_date LIMIT " . get_settings('posts_per_rss') );
|
2004-02-20 21:46:55 +01:00
|
|
|
} else { // if no post id passed in, we'll just ue the last 10 comments.
|
|
|
|
$comments = $wpdb->get_results("SELECT comment_ID, comment_author, comment_author_email,
|
|
|
|
comment_author_url, comment_date, comment_content, comment_post_ID,
|
2004-05-24 10:22:18 +02:00
|
|
|
$wpdb->posts.ID, $wpdb->posts.post_password FROM $wpdb->comments
|
|
|
|
LEFT JOIN $wpdb->posts ON comment_post_id = id WHERE $wpdb->posts.post_status = 'publish'
|
|
|
|
AND $wpdb->comments.comment_approved = '1' AND post_date < '".date("Y-m-d H:i:s")."'
|
2004-03-01 07:13:32 +01:00
|
|
|
ORDER BY comment_date DESC LIMIT " . get_settings('posts_per_rss') );
|
2003-09-28 20:19:10 +02:00
|
|
|
}
|
|
|
|
// this line is WordPress' motor, do not delete it.
|
|
|
|
if ($comments) {
|
|
|
|
foreach ($comments as $comment) {
|
|
|
|
?>
|
2004-02-20 21:46:55 +01:00
|
|
|
<item>
|
2003-09-28 20:19:10 +02:00
|
|
|
<title>by: <?php comment_author_rss() ?></title>
|
|
|
|
<link><?php comment_link_rss() ?></link>
|
2004-02-20 21:46:55 +01:00
|
|
|
<pubDate><?php comment_time('r'); ?></pubDate>
|
2003-09-28 20:19:10 +02:00
|
|
|
<guid isPermaLink="false"><?php comment_ID(); echo ":".$comment->comment_post_ID; ?>@<?php bloginfo_rss("url") ?></guid>
|
|
|
|
<?php
|
2004-04-21 00:56:47 +02:00
|
|
|
if (!empty($comment->post_password) && $_COOKIE['wp-postpass'] != $comment->post_password) {
|
2003-09-28 20:19:10 +02:00
|
|
|
?>
|
|
|
|
<description>Protected Comments: Please enter your password to view comments.</description>
|
|
|
|
<content:encoded><![CDATA[<?php echo get_the_password_form() ?>]]></content:encoded>
|
|
|
|
<?php
|
2004-02-20 21:46:55 +01:00
|
|
|
} else {
|
2003-09-28 20:19:10 +02:00
|
|
|
?>
|
|
|
|
<description><?php comment_text_rss() ?></description>
|
|
|
|
<content:encoded><![CDATA[<?php comment_text() ?>]]></content:encoded>
|
2004-02-20 21:46:55 +01:00
|
|
|
<?php
|
|
|
|
} // close check for password
|
|
|
|
?>
|
2003-09-28 20:19:10 +02:00
|
|
|
</item>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-12-14 10:48:34 +01:00
|
|
|
} }
|
2003-09-28 20:19:10 +02:00
|
|
|
?>
|
|
|
|
</channel>
|
2004-02-20 21:46:55 +01:00
|
|
|
</rss>
|