Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_title_rss

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
417
418      // Begin Loop.
419      foreach ( $posts as $post ) {
420           setup_postdata( $post );
421           $is_sticky = is_sticky( $post->ID ) ? 1 : 0;
422 ?>
423      <item>
424           <title><?php
425                /** This filter is documented in wp-includes/feed.php */
426                echo apply_filters( 'the_title_rss', $post->post_title );
427           ?></title>
428           <link><?php the_permalink_rss() ?></link>
429           <pubDate><?php echo mysql2date( 'D, d M Y H:i:s +0000', get_post_time( 'Y-m-d H:i:s', true ), false ); ?></pubDate>
430           <dc:creator><?php echo wxr_cdata( get_the_author_meta( 'login' ) ); ?></dc:creator>
431           <guid isPermaLink="false"><?php the_guid(); ?></guid>
432           <description></description>
433           <content:encoded><?php
434                /**
435                 * Filter the post content used for WXR exports.