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