HEX
Server: Apache
System: Linux cp4.skywebbox.com 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
User: alfouzantranspor (1054)
PHP: 8.3.23
Disabled: exec,passthru,shell_exec,system
Upload Files
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