File: /home/alfouzantranspor/www/wp-content/themes/manufacturing-industry/inc/custom-header.php
<?php
/**
* Custom header implementation
*/
function manufacturing_industry_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'manufacturing_industry_custom_header_args', array(
'default-text-color' => 'fff',
'header-text' => false,
'width' => 1200,
'height' => 85,
'flex-width' => true,
'flex-height' => true,
'wp-head-callback' => 'manufacturing_industry_header_style',
) ) );
}
add_action( 'after_setup_theme', 'manufacturing_industry_custom_header_setup' );
if ( ! function_exists( 'manufacturing_industry_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
*
* @see manufacturing_industry_custom_header_setup().
*/
add_action( 'wp_enqueue_scripts', 'manufacturing_industry_header_style' );
function manufacturing_industry_header_style() {
//Check if user has defined any header image.
if ( get_header_image() ) :
$custom_css = "
.menu-section {
background-image:url('".esc_url(get_header_image())."') !important;
background-size: 100% 100%;
}";
wp_add_inline_style( 'manufacturing-industry-basic-style', $custom_css );
endif;
}
endif; // manufacturing_industry_header_style