'fff', 'header-text' => false, 'width' => 1600, 'height' => 100, 'flex-width' => true, 'flex-height' => true, 'wp-head-callback' => 'adventure_trekking_camp_header_style', ) ) ); } add_action( 'after_setup_theme', 'adventure_trekking_camp_custom_header_setup' ); if ( ! function_exists( 'adventure_trekking_camp_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see adventure_trekking_camp_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'adventure_trekking_camp_header_style' ); function adventure_trekking_camp_header_style() { if ( get_header_image() ) : $custom_css = " .menu-header{ background-image:url('".esc_url(get_header_image())."') !important; background-position: top; height: auto !important; background-size: 100% !important; }"; wp_add_inline_style( 'adventure-trekking-camp-style', $custom_css ); endif; } endif;