![]() 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/master-business/inc/ |
<?php /** * Custom Header feature. * * @link http://codex.wordpress.org/Custom_Headers * * @package Master_Business */ /** * Set up the WordPress core custom header feature. * * @since 1.0.0 */ function master_business_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'master_business_custom_header_args', array( 'default-image' => get_template_directory_uri() . '/images/header-banner.jpg', 'width' => 1920, 'height' => 500, 'flex-height' => true, 'header-text' => false, ) ) ); // Register default headers. register_default_headers( array( 'main-image' => array( 'url' => '%s/images/header-banner.jpg', 'thumbnail_url' => '%s/images/header-banner.jpg', 'description' => esc_html_x( 'Main Image', 'header image description', 'master-business' ), ), ) ); } add_action( 'after_setup_theme', 'master_business_custom_header_setup' );