*
* @package Academica
* @since Academica 1.2.2-wpcom
*/
/**
* Setup the WordPress core custom header feature.
*
* Use add_theme_support to register support for WordPress 3.4+
* as well as provide backward compatibility for previous versions.
* Use feature detection of wp_get_theme() which was introduced
* in WordPress 3.4.
*
* @todo Rework this function to remove WordPress 3.4 support when WordPress 3.6 is released.
*
* @uses academica_header_style()
* @uses academica_admin_header_style()
* @uses academica_admin_header_image()
*
* @package Academica
*/
function academica_custom_header_setup() {
$args = array(
'default-image' => '',
'default-text-color' => '0c5390',
'width' => 960,
'height' => 300,
'flex-height' => true,
'wp-head-callback' => 'academica_header_style',
'admin-head-callback' => 'academica_admin_header_style',
'admin-preview-callback' => 'academica_admin_header_image',
);
$args = apply_filters( 'academica_custom_header_args', $args );
add_theme_support( 'custom-header', $args );
}
add_action( 'after_setup_theme', 'academica_custom_header_setup' );
/**
* Shiv for get_custom_header().
*
* get_custom_header() was introduced to WordPress
* in version 3.4. To provide backward compatibility
* with previous versions, we will define our own version
* of this function.
*
* @todo Remove this function when WordPress 3.6 is released.
* @return stdClass All properties represent attributes of the curent header image.
*
* @package Academica
* @since Academica 1.2.2-wpcom
*/
if ( ! function_exists( 'get_custom_header' ) ) {
function get_custom_header() {
return (object) array(
'url' => get_header_image(),
'thumbnail_url' => get_header_image(),
'width' => HEADER_IMAGE_WIDTH,
'height' => HEADER_IMAGE_HEIGHT,
);
}
}
if ( ! function_exists( 'academica_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
*
* @see academica_custom_header_setup().
*
* @since Academica 1.2.2-wpcom
*/
function academica_header_style() {
// If no custom options for text are set, let's bail
// get_header_textcolor() options: HEADER_TEXTCOLOR is default, hide text (returns 'blank') or any hex value
if ( HEADER_TEXTCOLOR == get_header_textcolor() )
return;
// If we get this far, we have custom styles. Let's do this.
?>
Header admin panel.
*
* @see academica_custom_header_setup().
*
* @since Academica 1.2.2-wpcom
*/
function academica_admin_header_style() {
?>
Header admin panel.
*
* @see academica_custom_header_setup().
*
* @since Academica 1.2.2-wpcom
*/
function academica_admin_header_image() { ?>
>