PageRenderTime 48ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-includes/feed-rss2-comments.php

https://bitbucket.org/crypticrod/sr_wp_code
PHP | 66 lines | 59 code | 2 blank | 5 comment | 7 complexity | 5e2e9143901d195860bfa4040f3646ed MD5 | raw file
Possible License(s): AGPL-1.0, GPL-2.0, LGPL-2.1, GPL-3.0, LGPL-2.0, AGPL-3.0
  1. <?php
  2. /**
  3. * RSS2 Feed Template for displaying RSS2 Comments feed.
  4. *
  5. * @package WordPress
  6. */
  7. header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true);
  8. echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>';
  9. ?>
  10. <rss version="2.0"
  11. xmlns:content="http://purl.org/rss/1.0/modules/content/"
  12. xmlns:dc="http://purl.org/dc/elements/1.1/"
  13. xmlns:atom="http://www.w3.org/2005/Atom"
  14. xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  15. <?php do_action('rss2_ns'); do_action('rss2_comments_ns'); ?>
  16. >
  17. <channel>
  18. <title><?php
  19. if ( is_singular() )
  20. printf(ent2ncr(__('Comments on: %s')), get_the_title_rss());
  21. elseif ( is_search() )
  22. printf(ent2ncr(__('Comments for %s searching on %s')), get_bloginfo_rss( 'name' ), esc_attr($wp_query->query_vars['s']));
  23. else
  24. printf(ent2ncr(__('Comments for %s')), get_bloginfo_rss( 'name' ) . get_wp_title_rss());
  25. ?></title>
  26. <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
  27. <link><?php (is_single()) ? the_permalink_rss() : bloginfo_rss("url") ?></link>
  28. <description><?php bloginfo_rss("description") ?></description>
  29. <lastBuildDate><?php echo mysql2date('r', get_lastcommentmodified('GMT')); ?></lastBuildDate>
  30. <sy:updatePeriod><?php echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod>
  31. <sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency>
  32. <?php do_action('commentsrss2_head'); ?>
  33. <?php
  34. if ( have_comments() ) : while ( have_comments() ) : the_comment();
  35. $comment_post = get_post($comment->comment_post_ID);
  36. get_post_custom($comment_post->ID);
  37. ?>
  38. <item>
  39. <title><?php
  40. if ( !is_singular() ) {
  41. $title = get_the_title($comment_post->ID);
  42. $title = apply_filters('the_title_rss', $title);
  43. printf(ent2ncr(__('Comment on %1$s by %2$s')), $title, get_comment_author_rss());
  44. } else {
  45. printf(ent2ncr(__('By: %s')), get_comment_author_rss());
  46. }
  47. ?></title>
  48. <link><?php comment_link() ?></link>
  49. <dc:creator><?php echo get_comment_author_rss() ?></dc:creator>
  50. <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>
  51. <guid isPermaLink="false"><?php comment_guid() ?></guid>
  52. <?php if ( post_password_required($comment_post) ) : ?>
  53. <description><?php echo ent2ncr(__('Protected Comments: Please enter your password to view comments.')); ?></description>
  54. <content:encoded><![CDATA[<?php echo get_the_password_form() ?>]]></content:encoded>
  55. <?php else : // post pass ?>
  56. <description><?php comment_text_rss() ?></description>
  57. <content:encoded><![CDATA[<?php comment_text() ?>]]></content:encoded>
  58. <?php endif; // post pass
  59. do_action('commentrss2_item', $comment->comment_ID, $comment_post->ID);
  60. ?>
  61. </item>
  62. <?php endwhile; endif; ?>
  63. </channel>
  64. </rss>