* * @link https://developer.wordpress.org/themes/functionality/custom-headers/ * * @package Aribull */ /** * Set up the WordPress core custom header feature. * * @uses aribull_header_style() */ if ( ! function_exists( 'aribull_custom_header_setup' ) ) : function aribull_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'aribull_custom_header_args', array( 'default-image' => get_template_directory_uri() . '/images/header.jpg', 'default-text-color' => '2f2f2f', 'width' => 1800, 'height' => 1200, 'flex-height' => true, 'wp-head-callback' => 'aribull_header_style', ) ) ); register_default_headers( array( 'arispa' => array( 'url' => '%s/images/header.jpg', 'thumbnail_url' => '%s/images/header.jpg', 'description' => __( 'AriSpa', 'aribull' ), ), ) ); } endif; add_action( 'after_setup_theme', 'aribull_custom_header_setup' ); if ( ! function_exists( 'aribull_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see aribull_custom_header_setup(). */ function aribull_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. ?>