<?php
/**
 * Sample implementation of the Custom Header feature
 *
 * You can add an optional custom header image to header.php like so ...
 *
	<?php the_header_image_tag(); ?>
 *
 * @link https://developer.wordpress.org/themes/functionality/custom-headers/
 *
 * @package anirohotellight
 */

/**
 * Set up the WordPress core custom header feature.
 *
 * @uses anirohotellight_header_style()
 */
function anirohotellight_custom_header_setup() {
	add_theme_support( 'custom-header', apply_filters( 'anirohotellight_custom_header_args', array(
		'default'          => '',
		'default-text-color'     => 'd2691e',
		'width'                  => 1300,
		'height'                 => 480,
		'flex-height'            => true,
		'wp-head-callback'       => 'anirohotellight_header_style',
	) ) );
}
add_action( 'after_setup_theme', 'anirohotellight_custom_header_setup' );

if ( ! function_exists( 'anirohotellight_header_style' ) ) :
/**
 * Styles the header image and text displayed on the blog.
 *
 * @see anirohotellight_custom_header_setup().
 */
function anirohotellight_header_style() {

}
endif;