* * @link https://developer.wordpress.org/themes/functionality/custom-headers/ * * @package Restaurant Zone */ /** * Set up the WordPress core custom header feature. * * @uses restaurant_zone_header_style() */ function restaurant_zone_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'restaurant_zone_custom_header_args', array( 'width' => 1400, 'height' => 250, 'flex-height' => true, 'flex-width' => true, 'header-text' => false, 'wp-head-callback' => 'restaurant_zone_header_style', ) ) ); } add_action( 'after_setup_theme', 'restaurant_zone_custom_header_setup' ); if ( ! function_exists( 'restaurant_zone_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see restaurant_zone_custom_header_setup(). */ function restaurant_zone_header_style() { ?>