Current File : /home/itiffy/itiffyproject.com/aspen/wp-content/themes/vw-painter/inc/custom-header.php |
<?php
/**
* @package VW Painter
* Setup the WordPress core custom header feature.
*
* @uses vw_painter_header_style()
*/
function vw_painter_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'vw_painter_custom_header_args', array(
'default-text-color' => 'fff',
'header-text' => false,
'width' => 1600,
'height' => 82,
'flex-width' => true,
'flex-height' => true,
'wp-head-callback' => 'vw_painter_header_style',
) ) );
}
add_action( 'after_setup_theme', 'vw_painter_custom_header_setup' );
if ( ! function_exists( 'vw_painter_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
*
* @see vw_painter_custom_header_setup().
*/
add_action( 'wp_enqueue_scripts', 'vw_painter_header_style' );
function vw_painter_header_style() {
//Check if user has defined any header image.
if ( get_header_image() ) :
$custom_css = "
.page-template-custom-home-page #top-header, #top-header{
background-image:url('".esc_url(get_header_image())."');
background-position: center top;
}";
wp_add_inline_style( 'vw-painter-basic-style', $custom_css );
endif;
}
endif; // vw_painter_header_style