Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_wp_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
77  * @uses wp_title() See function for $sep parameter usage.
78  *
79  * @param string $sep Optional.How to separate the title. See wp_title() for more info.
80  * @return string Error message on failure or blog title on success.
81  */
82 function get_wp_title_rss($sep = '»') {
83      $title = wp_title($sep, false);
84      if ( is_wp_error( $title ) )
85           return $title->get_error_message();
86      $title = apply_filters('get_wp_title_rss', $title);
87      return $title;
88 }
89
90 /**
91  * Display the blog title for display of the feed title.
92  *
93  * @package WordPress
94  * @subpackage Feed
95  * @since 2.2.0