'', 'random-default' => false, 'width' => 1280, 'height' => 400, 'flex-width' => true, 'flex-height' => true, 'default-text-color' => '000000', 'header-text' => true, 'uploads' => true, 'wp-head-callback' => 'airy_custom_header_wp_head' ) ); // Registers default headers for the theme. //register_default_headers(); } /** * Callback function for outputting the custom header CSS to `wp_head`. * * @since 1.0.0 * @access public * @return void */ function airy_custom_header_wp_head() { if ( ! display_header_text() ) return; $hex = get_header_textcolor(); if ( ! $hex ) return; $style = "body.custom-header #site-title a { color: #{$hex}; }"; echo "\n" . '' . "\n"; }