* * @link https://developer.wordpress.org/themes/functionality/custom-headers/ * * @package resortica-lite */ /** * Set up the WordPress core custom header feature. * * @uses resortica_lite_header_style() */ if(!function_exists('resortica_lite_custom_header_setup')): function resortica_lite_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'resortica_lite_custom_header_args', array( 'default-image' => '', 'default-text-color' => '', 'width' => 1000, 'height' => 250, 'flex-height' => true, ) ) ); } add_action( 'after_setup_theme', 'resortica_lite_custom_header_setup' ); endif;