*
 * @package WP FanZone
 */
/**
 * Set up the WordPress core custom header feature.
 *
 * @uses flatly_header_style()
 * @uses flatly_admin_header_style()
 * @uses flatly_admin_header_image()
 */
function flatly_custom_header_setup() {
	add_theme_support( 'custom-header', apply_filters( 'flatly_custom_header_args', array(
		'default-image'          => '',
		'default-text-color'     => '000000',
		'width'                  => 1000,
		'height'                 => 250,
		'flex-height'            => true,
		'wp-head-callback'       => 'flatly_header_style',
		'admin-head-callback'    => 'flatly_admin_header_style',
		'admin-preview-callback' => 'flatly_admin_header_image',
	) ) );
}
add_action( 'after_setup_theme', 'flatly_custom_header_setup' );
if (!function_exists( 'flatly_header_style' ) ) :
/**
 * Styles the header image and text displayed on the blog
 *
 * @see flatly_custom_header_setup().
 */
function flatly_header_style() {
	$header_text_color = get_header_textcolor();
	// If we get this far, we have custom styles. Let's do this.
	?>
	
	 Header admin panel.
 *
 * @see flatly_custom_header_setup().
 */
function flatly_admin_header_style() {
?>
	
 Header admin panel.
 *
 * @see flatly_custom_header_setup().
 */
function flatly_admin_header_image() {
	$style = sprintf( ' style="color:#%s;"', get_header_textcolor() );
?>