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.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 198 | if ( !empty($monthnum) ) |
| 199 | $title .= " $sep ".$wp_locale->get_month($monthnum); |
| 200 | if ( !empty($day) ) |
| 201 | $title .= " $sep ".zeroise($day, 2); |
| 202 | } |
| 203 | |
| 204 | // If there is a post |
| 205 | if ( is_single() || is_page() ) { |
| 206 | $title = strip_tags($posts[0]->post_title); |
| 207 | $title = apply_filters('single_post_title', $title); |
| 208 | } |
| 209 | |
| 210 | $prefix = ''; |
| 211 | if ( !empty($title) ) |
| 212 | $prefix = " $sep "; |
| 213 | |
| 214 | $title = $prefix . $title; |
| 215 | $title = apply_filters('wp_title', $title, $sep); |
| 216 | |
| Line | Code |
| 226 | global $wpdb; |
| 227 | $p = get_query_var('p'); |
| 228 | $name = get_query_var('name'); |
| 229 | |
| 230 | if ( intval($p) || '' != $name ) { |
| 231 | if ( !$p ) |
| 232 | $p = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_name = '$name'"); |
| 233 | $post = & get_post($p); |
| 234 | $title = $post->post_title; |
| 235 | $title = apply_filters('single_post_title', $title); |
| 236 | if ( $display ) |
| 237 | echo $prefix.strip_tags($title); |
| 238 | else |
| 239 | return strip_tags($title); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | |
| 244 | function single_cat_title($prefix = '', $display = true ) { |