* * @link http://codex.wordpress.org/Custom_Headers * * @package Buzz_Store */ /** * Set up the WordPress core custom header feature. * */ function buzzstore_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'buzzstore_custom_header_args', array( 'default-image' => '', 'default-text-color' => '000000', 'width' => 175, 'height' => 66, 'flex-height' => true, 'flex-width' => true, ) ) ); } add_action( 'after_setup_theme', 'buzzstore_custom_header_setup' );