![]() 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/askdragao.com/wp-content/themes/football-sports-club/inc/ |
<?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 Football Sports Club */ /** * Set up the WordPress core custom header feature. * * @uses football_sports_club_header_style() */ function football_sports_club_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'football_sports_club_custom_header_args', array( 'header-text' => false, 'width' => 1600, 'height' => 250, 'flex-height' => true, 'wp-head-callback' => 'football_sports_club_header_style', ) ) ); } add_action( 'after_setup_theme', 'football_sports_club_custom_header_setup' ); if ( ! function_exists( 'football_sports_club_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see football_sports_club_custom_header_setup(). */ function football_sports_club_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() ) : ?> .main-header,.page-template-home-template .main-header { background: url(<?php echo esc_url( get_header_image() ); ?>) no-repeat; background-position: center top; background-size: cover; } <?php endif; ?> </style> <?php } endif;