Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: commentrss2_item

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
42           <pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_comment_time('Y-m-d H:i:s', true), false); ?></pubDate>
43           <guid><?php comment_link() ?></guid>
44 <?php if (!empty($comment_post->post_password) && $_COOKIE['wp-postpass'] != $comment_post->post_password) : ?>
45           <description><?php _e('Protected Comments: Please enter your password to view comments.'); ?></description>
46           <content:encoded><![CDATA[<?php echo get_the_password_form() ?>]]></content:encoded>
47 <?php else : // post pass ?>
48           <description><?php comment_text_rss() ?></description>
49           <content:encoded><![CDATA[<?php comment_text() ?>]]></content:encoded>
50 <?php endif; // post pass
51      do_action('commentrss2_item', $comment->comment_ID, $comment_post->ID);
52 ?>
53      </item>
54 <?php endwhile; endif; ?>
55 </channel>
56 </rss>
57