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
469
470      // Begin Loop.
471      foreach ( $posts as $post ) {
472           setup_postdata( $post );
473           $is_sticky = is_sticky( $post->ID ) ? 1 : 0;
474 ?>
475      <item>
476           <title><?php
477                /** This filter is documented in wp-includes/feed.php */
478                echo apply_filters( 'the_title_rss', $post->post_title );
479           ?></title>
480           <link><?php the_permalink_rss() ?></link>
481           <pubDate><?php echo mysql2date( 'D, d M Y H:i:s +0000', get_post_time( 'Y-m-d H:i:s', true ), false ); ?></pubDate>
482           <dc:creator><?php echo wxr_cdata( get_the_author_meta( 'login' ) ); ?></dc:creator>
483           <guid isPermaLink="false"><?php the_guid(); ?></guid>
484           <description></description>
485           <content:encoded><?php
486                /**
487                 * Filters the post content used for WXR exports.