*
* @link https://developer.wordpress.org/themes/functionality/custom-headers/
*
* @package bellini
*/
/**
* Set up the WordPress core custom header feature.
*
* @uses bellini_header_style()
* @uses bellini_admin_header_style()
* @uses bellini_admin_header_image()
*/
if ( ! function_exists( 'bellini_custom_header_setup' ) ) {
function bellini_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'bellini_custom_header_args', array(
'default-image' => '',
'default-text-color' => '000000',
'width' => 1920,
'height' => 300,
'flex-height' => true,
'wp-head-callback' => 'bellini_header_style',
'admin-preview-callback' => 'bellini_admin_header_image',
) ) );
}
}
add_action( 'after_setup_theme', 'bellini_custom_header_setup' );
if ( ! function_exists( 'bellini_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
*
* @see bellini_custom_header_setup().
*/
function bellini_header_style() {
$header_text_color = get_header_textcolor();
// If no custom options for text are set, let's bail
if ( empty( $header_image ) && $header_text_color ) {
return;
}
// If we get this far, we have custom styles. Let's do this.
?>
Header admin panel.
*
* @see bellini_custom_header_setup().
*/
function bellini_admin_header_image() {
?>