get_parent_theme_file_uri() . '/resource/img/banner.png', 'default-text-color' => 'fff', 'header-text' => false, 'width' => 1360, 'height' => 110, 'flex-width' => true, 'flex-height' => true, 'wp-head-callback' => 'auto_mechanic_header_style', ) ) ); register_default_headers( array( 'default-image' => array( 'url' => '%s/resource/img/banner.png', 'thumbnail_url' => '%s/resource/img/banner.png', 'description' => __( 'Default Header Image', 'auto-mechanic' ), ), ) ); } add_action( 'after_setup_theme', 'auto_mechanic_custom_header_setup' ); if ( ! function_exists( 'auto_mechanic_header_style' ) ) : add_action( 'wp_enqueue_scripts', 'auto_mechanic_header_style' ); function auto_mechanic_header_style() { if ( get_header_image() ) : $auto_mechanic_custom_css = " .bottom-header-outer-wrapper{ background-image:url('".esc_url(get_header_image())."') !important; background-position: center top; }"; wp_add_inline_style( 'auto-mechanic-style', $auto_mechanic_custom_css ); endif; } endif;