false, 'width' => 1200, 'height' => 70, 'flex-width' => true, 'flex-height' => true, 'wp-head-callback' => 'auction_bidding_header_style', ) ) ); } add_action( 'after_setup_theme', 'auction_bidding_custom_header_setup' ); if ( ! function_exists( 'auction_bidding_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see auction_bidding_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'auction_bidding_header_style' ); function auction_bidding_header_style() { if ( get_header_image() ) : $custom_css = " .page-template-custom-home-page .middle-header,.middle-header{ background-image:url('".esc_url(get_header_image())."'); background-position: center top; background-size: 100% 100%; }"; wp_add_inline_style( 'auction-bidding-basic-style', $custom_css ); endif; } endif;