![]() 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/matelopsrp.com/wp-content/themes/vw-solar-energy/inc/ |
<?php /** * @package VW Solar Energy * Setup the WordPress core custom header feature. * * @uses vw_solar_energy_header_style() */ function vw_solar_energy_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'vw_solar_energy_custom_header_args', array( 'default-text-color' => 'fff', 'header-text' => false, 'width' => 1600, 'height' => 120, 'flex-width' => true, 'flex-height' => true, 'wp-head-callback' => 'vw_solar_energy_header_style', ) ) ); } add_action( 'after_setup_theme', 'vw_solar_energy_custom_header_setup' ); if ( ! function_exists( 'vw_solar_energy_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see vw_solar_energy_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'vw_solar_energy_header_style' ); function vw_solar_energy_header_style() { //Check if user has defined any header image. if ( get_header_image() ) : $custom_css = " .home-page-header, .page-template-custom-home-page .home-page-header { background-image:url('".esc_url(get_header_image())."'); background-position: center top; }"; wp_add_inline_style( 'vw-solar-energy-basic-style', $custom_css ); endif; } endif; // vw_solar_energy_header_style