* * @link https://developer.wordpress.org/themes/functionality/custom-headers/ * * @package Abuhill */ /** * Set up the WordPress core custom header feature. * * @uses abuhill_header_style() */ function abuhill_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'abuhill_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' => 'abuhill_header_style', ) ) ); register_default_headers( array( 'abspa' => array( 'url' => '%s/images/header.jpg', 'thumbnail_url' => '%s/images/header.jpg', 'description' => __( 'AbSpa', 'abuhill' ), ), ) ); } add_action( 'after_setup_theme', 'abuhill_custom_header_setup' ); if ( ! function_exists( 'abuhill_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see abuhill_custom_header_setup(). */ function abuhill_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. ?>