'fff', 'header-text' => false, 'width' => 1600, 'height' => 400, 'wp-head-callback' => 'multipurpose_ecommerce_header_style', ) ) ); } add_action( 'after_setup_theme', 'multipurpose_ecommerce_custom_header_setup' ); if ( ! function_exists( 'multipurpose_ecommerce_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see multipurpose_ecommerce_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'multipurpose_ecommerce_header_style' ); function multipurpose_ecommerce_header_style() { //Check if user has defined any header image. if ( get_header_image() ) : $multipurpose_ecommerce_custom_css = " .site-branding{ background-image:url('".esc_url(get_header_image())."'); background-position: center top; }"; wp_add_inline_style( 'multipurpose-ecommerce-basic-style', $multipurpose_ecommerce_custom_css ); endif; } endif; // multipurpose_ecommerce_header_style