false, 'width' => 1200, 'height' => 95, 'flex-width' => true, 'flex-height' => true, 'wp-head-callback' => 'aqeeq_agency_header_style', ) ) ); } add_action( 'after_setup_theme', 'aqeeq_agency_custom_header_setup' ); if ( ! function_exists( 'aqeeq_agency_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see aqeeq_agency_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'aqeeq_agency_header_style' ); function aqeeq_agency_header_style() { if ( get_header_image() ) : $custom_css = " .main-header{ background-image:url('".esc_url(get_header_image())."'); background-position: center top; background-size: 100% 100%; }"; wp_add_inline_style( 'aqeeq-agency-basic-style', $custom_css ); endif; } endif;