* * @package corporately */ /** * Set up the WordPress core custom header feature. * * @uses corporately_header_style() */ function corporately_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'corporately_custom_header_args', array( 'default-image' => '%s/images/header-bg.png', 'default-text-color' => 'fff', 'width' => 1600, 'height' => 500, 'flex-height' => true, 'flex-width' => true, 'wp-head-callback' => 'corporately_header_style', ) ) ); register_default_headers( array( 'header-bg' => array( 'url' => '%s/images/header-bg.png', 'thumbnail_url' => '%s/images/header-bg_thumbnail.png', 'description' => _x( 'Default', 'Default header image', 'corporately' ) ), ) ); } add_action( 'after_setup_theme', 'corporately_custom_header_setup' ); if ( ! function_exists( 'corporately_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see corporately_custom_header_setup(). */ function corporately_header_style() { $header_text_color = get_header_textcolor(); // If no custom options for text are set, let's bail if ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color ) { return; } // If we get this far, we have custom styles. Let's do this. ?>