Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: atom_entry

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
33           <id><?php the_guid(); ?></id>
34           <updated><?php echo get_post_time('Y-m-d\TH:i:s\Z', true); ?></updated>
35           <published><?php echo get_post_time('Y-m-d\TH:i:s\Z', true); ?></published>
36           <?php the_category_rss('atom') ?>
37           <summary type="<?php html_type_rss(); ?>"><![CDATA[<?php the_excerpt_rss(); ?>]]></summary>
38 <?php if ( !get_option('rss_use_excerpt') ) : ?>
39           <content type="<?php html_type_rss(); ?>" xml:base="<?php permalink_single_rss() ?>"><![CDATA[<?php the_content('', 0, '') ?>]]></content>
40 <?php endif; ?>
41 <?php atom_enclosure(); ?>
42 <?php do_action('atom_entry'); ?>
43      </entry>
44      <?php endwhile ; ?>
45 </feed>