<?php
/**
 * Sample implementation of the Custom Header feature
 * http://codex.wordpress.org/Custom_Headers
 *
 * You can add an optional custom header image to header.php like so ...

	<?php if ( get_header_image() ) : ?>
	<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
		<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="">
	</a>
	<?php endif; // End header image check. ?>

 *
 * @package blogk3
 */

/**
 * Setup the WordPress core custom header feature.
 *
 * @uses blogk3_header_style()
 * @uses blogk3_admin_header_style()
 * @uses blogk3_admin_header_image()
 */
 
function blogk3_custom_header_setup() {
	add_theme_support( 'custom-header', apply_filters( 'blogk3_custom_header_args', array(
		'default-image'          => '',
		'header-text'     		 => false,
		'width'                  => 1950,
		'height'                 => 500,
		'flex-width'             => true,
		'flex-height'            => true,
	) ) );
} 