'fff', 'header-text' => false, 'width' => 1600, 'height' => 100, 'wp-head-callback' => 'boutique_designer_shop_header_style', ) ) ); } add_action( 'after_setup_theme', 'boutique_designer_shop_custom_header_setup' ); if ( ! function_exists( 'boutique_designer_shop_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see boutique_designer_shop_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'boutique_designer_shop_header_style' ); function boutique_designer_shop_header_style() { if ( get_header_image() ) : $custom_css = " #header{ background-image:url('".esc_url(get_header_image())."'); background-position: center top; }"; wp_add_inline_style( 'boutique-designer-shop-style', $custom_css ); endif; } endif; // Heading if( class_exists( 'WP_Customize_Control' ) ) { class Boutique_Designer_Shop_Customizer_Customcontrol_Section extends WP_Customize_Control { // Declare the control type. public $type = 'section'; // Render the control to be displayed in the Customizer. public function render_content() { ?>