* * * * * * @link http://codex.wordpress.org/Custom_Headers * * @package Bonkers */ /** * Set up the WordPress core custom header feature. * * @uses bonkers_header_style() */ function bonkers_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'bonkers_custom_header_args', array( 'default-image' => '', 'width' => 1425, 'height' => 152, 'flex-height' => true, 'flex-width' => true, 'header-text' => false, ) ) ); } add_action( 'after_setup_theme', 'bonkers_custom_header_setup' );