* * @link https://developer.wordpress.org/themes/functionality/custom-headers/ * * @package Abdum */ /** * Set up the WordPress core custom header feature. * * @uses abdum_header_style() */ function abdum_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'abdum_custom_header_args', array( 'default-image' => get_template_directory_uri() . '/images/header.png', 'default-text-color' => '2f2f2f', 'width' => 1800, 'height' => 900, 'flex-height' => true, 'wp-head-callback' => 'abdum_header_style', ) ) ); register_default_headers( array( 'abspa' => array( 'url' => '%s/images/header.png', 'thumbnail_url' => '%s/images/header.png', 'description' => __( 'AbSpa', 'abdum' ), ), ) ); } add_action( 'after_setup_theme', 'abdum_custom_header_setup' ); if ( ! function_exists( 'abdum_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see abdum_custom_header_setup(). */ function abdum_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. ?>