File: /home/l2pbkn5l6xav/public_html/wp-content/themes/lz-charity-welfare/inc/custom-header.php
<?php
/**
* Custom header implementation
*/
function lz_charity_welfare_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'lz_charity_welfare_custom_header_args', array(
'default-text-color' => 'fff',
'header-text' => false,
'width' => 1600,
'height' => 400,
'wp-head-callback' => 'lz_charity_welfare_header_style',
) ) );
}
add_action( 'after_setup_theme', 'lz_charity_welfare_custom_header_setup' );
if ( ! function_exists( 'lz_charity_welfare_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
*
* @see lz_charity_welfare_custom_header_setup().
*/
function lz_charity_welfare_header_style() {
$header_text_color = get_header_textcolor();
?>
<style type="text/css">
<?php
//Check if user has defined any header image.
if ( get_header_image() ) :
?>
.menu-section{
background: url(<?php echo esc_url(get_header_image()); ?>) no-repeat;
background-position: center top;
}
<?php endif; ?>
</style>
<?php
}
endif;