![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/claquemagazineawards.com/wp-content/themes/glamour-world/inc/ |
<?php /** * @package Glamour World * Setup the WordPress core custom header feature. * * @uses glamour_world_header_style() */ function glamour_world_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'glamour_world_custom_header_args', array( 'default-text-color' => '333', 'width' => 1400, 'height' => 280, 'wp-head-callback' => 'glamour_world_header_style', ) ) ); } add_action( 'after_setup_theme', 'glamour_world_custom_header_setup' ); if ( ! function_exists( 'glamour_world_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see glamour_world_custom_header_setup(). */ function glamour_world_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: url(<?php echo esc_url( get_header_image() ); ?>) no-repeat; 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 h1, .logo p{ clip: rect(1px, 1px, 1px, 1px); position: absolute; } </style> <?php } endif; // glamour_world_header_style