WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
76 | * @uses wp_title() See function for $sep parameter usage. |
77 | * |
78 | * @param string $sep Optional.How to separate the title. See wp_title() for more info. |
79 | * @return string Error message on failure or blog title on success. |
80 | */ |
81 | function get_wp_title_rss($sep = '»') { |
82 | $title = wp_title($sep, false); |
83 | if ( is_wp_error( $title ) ) |
84 | return $title->get_error_message(); |
85 | $title = apply_filters('get_wp_title_rss', $title); |
86 | return $title; |
87 | } |
88 |
|
89 | /** |
90 | * Display the blog title for display of the feed title. |
91 | * |
92 | * @package WordPress |
93 | * @subpackage Feed |
94 | * @since 2.2.0 |