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 |
|---|---|
| 15 | } |
| 16 | $foot = "--></style>\n"; |
| 17 | if ( '' != $output ) |
| 18 | echo $head . $output . $foot; |
| 19 | } |
| 20 | |
| 21 | add_action('wp_head', 'kubrick_head'); |
| 22 | |
| 23 | function kubrick_header_image() { |
| 24 | return apply_filters('kubrick_header_image', get_option('kubrick_header_image')); |
| 25 | } |
| 26 | |
| 27 | function kubrick_upper_color() { |
| 28 | if ( strstr( $url = kubrick_header_image_url(), 'header-img.php?' ) ) { |
| 29 | parse_str(substr($url, strpos($url, '?') + 1), $q); |
| 30 | return $q['upper']; |
| 31 | } else |
| 32 | return '69aee7'; |
| 33 | } |