Welcome, visitor! Log in
 

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.

  • Action hooks look like this: do_action( "hook_name" )
  • Filter hooks look like this: apply_filters( "hook_name", "what_to_filter" ).

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
46                 } else {
47                      printf(ent2ncr(__('By: %s')), get_comment_author_rss());
48                 }
49            ?></title>
50            <link><?php comment_link() ?></link>
51            <dc:creator><?php echo get_comment_author_rss() ?></dc:creator>
52            <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>
53            <guid isPermaLink="false"><?php comment_guid() ?></guid>
54  <?php if ( post_password_required($comment_post) ) : ?>
55            <description><?php echo ent2ncr(__('Protected Comments: Please enter your password to view comments.')); ?></description>
56            <content:encoded><![CDATA[<?php echo get_the_password_form() ?>]]></content:encoded>
57  <?php else : // post pass ?>
58            <description><?php comment_text_rss() ?></description>
59            <content:encoded><![CDATA[<?php comment_text() ?>]]></content:encoded>
60  <?php endif; // post pass
61       do_action('commentrss2_item', $comment->comment_ID, $comment_post->ID);
62  ?>
63       </item>
64  <?php endwhile; endif; ?>
65  </channel>
66  </rss>
67  
68