Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: kubrick_header_color

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
44      if ( $image = kubrick_header_image() )
45           $url = get_template_directory_uri() . '/images/' . $image;
46      else
47           $url = get_template_directory_uri() . '/images/kubrickheader.jpg';
48
49      return $url;
50 }
51
52 function kubrick_header_color() {
53      return apply_filters('kubrick_header_color', get_option('kubrick_header_color'));
54 }
55
56 function kubrick_header_color_string() {
57      $color = kubrick_header_color();
58      if ( false === $color )
59           return 'white';
60
61      return $color;
62 }