Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rss_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
24 <?php while (have_posts()) : the_post(); ?>
25      <item>
26           <title><?php the_title_rss() ?></title>
27 <?php if (get_option('rss_use_excerpt')) { ?>
28           <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
29 <?php } else { // use content ?>
30           <description><?php the_content_rss('', 0, '', get_option('rss_excerpt_length')) ?></description>
31 <?php } ?>
32           <link><?php permalink_single_rss() ?></link>
33           <?php do_action('rss_item'); ?>
34      </item>
35 <?php endwhile; ?>
36 </channel>
37 </rss>
38