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