HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-86-generic #87-Ubuntu SMP PREEMPT_DYNAMIC Mon Sep 22 18:03:36 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: //home/bristolfilton.co.uk/public_html/wp-content/themes/vision-lite/inc/custom-header.php
<?php
/**
 * @package Vision Lite
 * Setup the WordPress core custom header feature.
 *
 * @uses vision_lite_header_style()

 */
function vision_lite_custom_header_setup() {
	add_theme_support( 'custom-header', apply_filters( 'vision_lite_custom_header_args', array(
		'default-text-color'     => '444444',
		'width'                  => 1600,
		'height'                 => 400,
		'wp-head-callback'       => 'vision_lite_header_style',
	) ) );
}
add_action( 'after_setup_theme', 'vision_lite_custom_header_setup' );

if ( ! function_exists( 'vision_lite_header_style' ) ) :
/**
 * Styles the header image and text displayed on the blog
 *
 * @see vision_lite_custom_header_setup().
 */
function vision_lite_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() || get_header_textcolor() ) :
	?>
		#header{
			background-image: url(<?php echo esc_url(get_header_image()); ?>);
			background-position: center top;
		}
		.logo h1 a { color:#<?php echo esc_html(get_header_textcolor()); ?>;}
	<?php endif; ?>	
	</style>
	<?php
	// If the header text option is untouched, let's bail.
	if ( display_header_text() ) {
		return;
	}

	// If the header text has been hidden.
	?>
    <style type="text/css">
		.logo {
			margin: 0 auto 0 0;
		}

		.logo h1,
		.logo p{
			clip: rect(1px, 1px, 1px, 1px);
			position: absolute;
		}
    </style>
	
    <?php
	
}
endif; // vision_lite_header_style