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
72      $comment_post    = get_post( $comment->comment_post_ID );
73      $GLOBALS['post'] = $comment_post;
74      ?>
75      <entry>
76           <title>
77           <?php
78           if ( ! is_singular() ) {
79                $title = get_the_title( $comment_post->ID );
80                /** This filter is documented in wp-includes/feed.php */
81                $title = apply_filters( 'the_title_rss', $title );
82                /* translators: Individual comment title. 1: Post title, 2: Comment author name. */
83                printf( ent2ncr( __( 'Comment on %1$s by %2$s' ) ), $title, get_comment_author_rss() );
84           } else {
85                /* translators: Comment author title. %s: Comment author name. */
86                printf( ent2ncr( __( 'By: %s' ) ), get_comment_author_rss() );
87           }
88           ?>
89           </title>
90           <link rel="alternate" href="<?php comment_link(); ?>" type="<?php bloginfo_rss( 'html_type' ); ?>" />