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
360      $where = 'WHERE ID IN (' . join( ',', $next_posts ) . ')';
361      $posts = $wpdb->get_results( "SELECT * FROM {$wpdb->posts} $where" );
362
363      // Begin Loop
364      foreach ( $posts as $post ) {
365           setup_postdata( $post );
366           $is_sticky = is_sticky( $post->ID ) ? 1 : 0;
367 ?>
368      <item>
369           <title><?php echo apply_filters( 'the_title_rss', $post->post_title ); ?></title>
370           <link><?php the_permalink_rss() ?></link>
371           <pubDate><?php echo mysql2date( 'D, d M Y H:i:s +0000', get_post_time( 'Y-m-d H:i:s', true ), false ); ?></pubDate>
372           <dc:creator><?php echo get_the_author_meta( 'login' ); ?></dc:creator>
373           <guid isPermaLink="false"><?php esc_url( the_guid() ); ?></guid>
374           <description></description>
375           <content:encoded><?php echo wxr_cdata( apply_filters( 'the_content_export', $post->post_content ) ); ?></content:encoded>
376           <excerpt:encoded><?php echo wxr_cdata( apply_filters( 'the_excerpt_export', $post->post_excerpt ) ); ?></excerpt:encoded>
377           <wp:post_id><?php echo $post->ID; ?></wp:post_id>
378           <wp:post_date><?php echo $post->post_date; ?></wp:post_date>