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
186           global $wp_query;
187           $wp_query->in_the_loop = true;  // Fake being in the loop.
188           // fetch 20 posts at a time rather than loading the entire table into memory
189           while ( $next_posts = array_splice($post_ids, 0, 20) ) {
190                $where = "WHERE ID IN (".join(',', $next_posts).")";
191                $posts = $wpdb->get_results("SELECT * FROM $wpdb->posts $where ORDER BY post_date_gmt ASC");
192                     foreach ($posts as $post) {
193                setup_postdata($post); ?>
194 <item>
195 <title><?php echo apply_filters('the_title_rss', $post->post_title); ?></title>
196 <link><?php the_permalink_rss() ?></link>
197 <pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_post_time('Y-m-d H:i:s', true), false); ?></pubDate>
198 <dc:creator><?php echo wxr_cdata(get_the_author()); ?></dc:creator>
199 <?php wxr_post_taxonomy() ?>
200
201 <guid isPermaLink="false"><?php the_guid(); ?></guid>
202 <description></description>
203 <content:encoded><?php echo wxr_cdata( apply_filters('the_content_export', $post->post_content) ); ?></content:encoded>
204 <wp:post_id><?php echo $post->ID; ?></wp:post_id>