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