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