* * @link https://developer.wordpress.org/themes/functionality/custom-headers/ * * @package Bebsha */ /** * Set up the WordPress core custom header feature. * * @uses bebsha_header_style() */ function bebsha_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'bebsha_custom_header_args', array( 'default-image' => get_template_directory_uri() . '/images/header.jpg', 'default-text-color' => '66666E', 'width' => 1800, 'height' => 500, 'flex-height' => true, 'wp-head-callback' => 'bebsha_header_style', ) ) ); register_default_headers( array( 'arispa' => array( 'url' => '%s/images/header.jpg', 'thumbnail_url' => '%s/images/header.jpg', 'description' => __('AriSpa', 'bebsha'), ), ) ); } add_action('after_setup_theme', 'bebsha_custom_header_setup'); if (!function_exists('bebsha_header_style')) : /** * Styles the header image and text displayed on the blog. * * @see bebsha_custom_header_setup(). */ function bebsha_header_style() { $header_image = get_header_image(); $header_text_color = get_header_textcolor(); // If we get this far, we have custom styles. Let's do this. ?>