false, 'width' => 1200, 'height' => 70, 'flex-width' => true, 'flex-height' => true, 'wp-head-callback' => 'accommodation_rental_header_style', ) ) ); } add_action( 'after_setup_theme', 'accommodation_rental_custom_header_setup' ); if ( ! function_exists( 'accommodation_rental_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see accommodation_rental_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'accommodation_rental_header_style' ); function accommodation_rental_header_style() { if ( get_header_image() ) : $custom_css = " .topbar{ background-image:url('".esc_url(get_header_image())."'); background-position: center top; background-size: cover; }"; wp_add_inline_style( 'accommodation-rental-basic-style', $custom_css ); endif; } endif;