* * @see http://codex.wordpress.org/Custom_Headers */ /** * Set up the WordPress core custom header feature. * * @uses \el_header_style() * @uses \el_admin_header_style() * @uses \el_admin_header_image() */ function el_custom_header_setup() { add_theme_support('custom-header', apply_filters('el_custom_header_args', array( 'default-image' => '', 'default-text-color' => '000000', 'width' => 1000, 'height' => 250, 'flex-height' => true, 'wp-head-callback' => 'el_header_style', 'admin-head-callback' => 'el_admin_header_style', 'admin-preview-callback' => 'el_admin_header_image', ))); } add_action('after_setup_theme', 'el_custom_header_setup'); if (!function_exists('el_header_style')): /** * Styles the header image and text displayed on the blog. * * @see el_custom_header_setup(). */ function el_header_style() { $header_text_color = get_header_textcolor(); // If we get this far, we have custom styles. Let's do this. ?> Header admin panel. * * @see el_custom_header_setup(). */ function el_admin_header_style() { ?> Header admin panel. * * @see el_custom_header_setup(). */ function el_admin_header_image() { ?>