'fff', 'header-text' => false, 'width' => 1600, 'height' => 400, 'flex-width' => true, 'flex-height' => true, 'wp-head-callback' => 'animal_pet_store_header_style', ) ) ); } add_action( 'after_setup_theme', 'animal_pet_store_custom_header_setup' ); if ( ! function_exists( 'animal_pet_store_header_style' ) ) : add_action( 'wp_enqueue_scripts', 'animal_pet_store_header_style' ); function animal_pet_store_header_style() { if ( get_header_image() ) : $custom_css = " .header-box{ background-image:url('".esc_url(get_header_image())."'); background-position: center top; background-size: cover; }"; wp_add_inline_style( 'animal-pet-store-style', $custom_css ); endif; } endif;