b0y-101 Mini Shell


Current Path : E:/wordpress/wp-content/themes/relaxed-home-lite/inc/
File Upload :
Current File : E:/wordpress/wp-content/themes/relaxed-home-lite/inc/custom-header.php

<?php
/**
 * @package relaxed-home-lite
 * @subpackage relaxed-home-lite
 * @since relaxed-home-lite 1.0
 * Setup the WordPress core custom header feature.
 *
 * @uses relaxedhome_lite_header_style()
*/

function relaxedhome_lite_custom_header_setup() {

	add_theme_support( 'custom-header', apply_filters( 'relaxedhome_lite_custom_header_args', array(
		'default-text-color'     => 'fff',
		'header-text' 			 =>	false,
		'width'                  => 1120,
		'height'                 => 125,
		'flex-width'         	=> true,
        'flex-height'        	=> true,
		'wp-head-callback'       => 'relaxedhome_lite_header_style',
	) ) );
}

add_action( 'after_setup_theme', 'relaxedhome_lite_custom_header_setup' );

if ( ! function_exists( 'relaxedhome_lite_header_style' ) ) :
/**
 * Styles the header image and text displayed on the blog
 *
 * @see relaxedhome_lite_custom_header_setup().
 */
add_action( 'wp_enqueue_scripts', 'relaxedhome_lite_header_style' );
function relaxedhome_lite_header_style() {
	//Check if user has defined any header image.
	if ( get_header_image() ) :
	$relaxedhome_lite_custom_css = "
        #header{
			background-image:url('".esc_url(get_header_image())."');
			background-position: center top;
		}";
	   	wp_add_inline_style( 'relaxed-home-lite-basic-style', $relaxedhome_lite_custom_css );
	endif;
}
endif; // relaxedhome_lite_header_style

Copyright © 2019 by b0y-101