2012-01-31 20:18:40 +00:00
|
|
|
<?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 $header_image = get_header_image();
|
|
|
|
if ( ! empty( $header_image ) ) { ?>
|
|
|
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
|
2012-04-23 22:52:48 +00:00
|
|
|
<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
|
2012-01-31 20:18:40 +00:00
|
|
|
</a>
|
|
|
|
<?php } // if ( ! empty( $header_image ) ) ?>
|
|
|
|
|
|
|
|
*
|
|
|
|
* @package _s
|
|
|
|
*/
|
|
|
|
|
2012-04-23 22:52:48 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
2012-08-27 21:25:10 +00:00
|
|
|
* @todo Rework this function to remove WordPress 3.4 support when WordPress 3.6 is released.
|
|
|
|
*
|
2012-04-23 22:52:48 +00:00
|
|
|
* @uses _s_header_style()
|
|
|
|
* @uses _s_admin_header_style()
|
|
|
|
* @uses _s_admin_header_image()
|
|
|
|
*
|
|
|
|
* @package _s
|
|
|
|
*/
|
2012-01-31 20:18:40 +00:00
|
|
|
function _s_custom_header_setup() {
|
2012-04-23 22:52:48 +00:00
|
|
|
$args = array(
|
|
|
|
'default-image' => '',
|
|
|
|
'default-text-color' => '000',
|
|
|
|
'width' => 1000,
|
|
|
|
'height' => 250,
|
|
|
|
'flex-height' => true,
|
|
|
|
'wp-head-callback' => '_s_header_style',
|
|
|
|
'admin-head-callback' => '_s_admin_header_style',
|
|
|
|
'admin-preview-callback' => '_s_admin_header_image',
|
|
|
|
);
|
2012-01-31 20:18:40 +00:00
|
|
|
|
2012-04-23 22:52:48 +00:00
|
|
|
$args = apply_filters( '_s_custom_header_args', $args );
|
2012-01-31 20:18:40 +00:00
|
|
|
|
2012-04-23 22:52:48 +00:00
|
|
|
if ( function_exists( 'wp_get_theme' ) ) {
|
|
|
|
add_theme_support( 'custom-header', $args );
|
|
|
|
} else {
|
|
|
|
// Compat: Versions of WordPress prior to 3.4.
|
|
|
|
define( 'HEADER_TEXTCOLOR', $args['default-text-color'] );
|
|
|
|
define( 'HEADER_IMAGE', $args['default-image'] );
|
|
|
|
define( 'HEADER_IMAGE_WIDTH', $args['width'] );
|
|
|
|
define( 'HEADER_IMAGE_HEIGHT', $args['height'] );
|
|
|
|
add_custom_image_header( $args['wp-head-callback'], $args['admin-head-callback'], $args['admin-preview-callback'] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
add_action( 'after_setup_theme', '_s_custom_header_setup' );
|
2012-01-31 20:18:40 +00:00
|
|
|
|
2012-04-23 22:52:48 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
2012-08-27 21:25:10 +00:00
|
|
|
* @todo Remove this function when WordPress 3.6 is released.
|
2012-04-23 22:52:48 +00:00
|
|
|
* @return stdClass All properties represent attributes of the curent header image.
|
|
|
|
*
|
|
|
|
* @package _s
|
|
|
|
*/
|
2012-01-31 20:18:40 +00:00
|
|
|
|
2012-04-23 22:52:48 +00:00
|
|
|
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,
|
|
|
|
);
|
|
|
|
}
|
2012-01-31 20:18:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! function_exists( '_s_header_style' ) ) :
|
|
|
|
/**
|
|
|
|
* Styles the header image and text displayed on the blog
|
|
|
|
*
|
2012-04-23 22:52:48 +00:00
|
|
|
* @see _s_custom_header_setup().
|
2012-01-31 20:18:40 +00:00
|
|
|
*/
|
|
|
|
function _s_header_style() {
|
2013-05-20 11:01:22 +00:00
|
|
|
$header_text_color = get_header_textcolor();
|
2012-01-31 20:18:40 +00:00
|
|
|
|
|
|
|
// 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
|
2013-05-20 11:01:22 +00:00
|
|
|
if ( HEADER_TEXTCOLOR == $header_text_color )
|
2012-01-31 20:18:40 +00:00
|
|
|
return;
|
2013-05-20 11:01:22 +00:00
|
|
|
|
2012-01-31 20:18:40 +00:00
|
|
|
// If we get this far, we have custom styles. Let's do this.
|
|
|
|
?>
|
|
|
|
<style type="text/css">
|
|
|
|
<?php
|
|
|
|
// Has the text been hidden?
|
2013-05-20 11:01:22 +00:00
|
|
|
if ( 'blank' == $header_text_color ) :
|
2012-01-31 20:18:40 +00:00
|
|
|
?>
|
|
|
|
.site-title,
|
|
|
|
.site-description {
|
|
|
|
position: absolute !important;
|
|
|
|
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
}
|
|
|
|
<?php
|
|
|
|
// If the user has set a custom color for the text use that
|
|
|
|
else :
|
|
|
|
?>
|
|
|
|
.site-title a,
|
|
|
|
.site-description {
|
2013-05-20 11:01:22 +00:00
|
|
|
color: #<?php echo $header_text_color; ?>;
|
2012-01-31 20:18:40 +00:00
|
|
|
}
|
|
|
|
<?php endif; ?>
|
|
|
|
</style>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
endif; // _s_header_style
|
|
|
|
|
|
|
|
if ( ! function_exists( '_s_admin_header_style' ) ) :
|
|
|
|
/**
|
|
|
|
* Styles the header image displayed on the Appearance > Header admin panel.
|
|
|
|
*
|
2012-04-23 22:52:48 +00:00
|
|
|
* @see _s_custom_header_setup().
|
2012-01-31 20:18:40 +00:00
|
|
|
*/
|
|
|
|
function _s_admin_header_style() {
|
|
|
|
?>
|
|
|
|
<style type="text/css">
|
|
|
|
.appearance_page_custom-header #headimg {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
#headimg h1,
|
|
|
|
#desc {
|
|
|
|
}
|
|
|
|
#headimg h1 {
|
|
|
|
}
|
|
|
|
#headimg h1 a {
|
|
|
|
}
|
|
|
|
#desc {
|
|
|
|
}
|
|
|
|
#headimg img {
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
endif; // _s_admin_header_style
|
|
|
|
|
|
|
|
if ( ! function_exists( '_s_admin_header_image' ) ) :
|
|
|
|
/**
|
|
|
|
* Custom header image markup displayed on the Appearance > Header admin panel.
|
|
|
|
*
|
2012-04-23 22:52:48 +00:00
|
|
|
* @see _s_custom_header_setup().
|
2012-01-31 20:18:40 +00:00
|
|
|
*/
|
2013-05-20 11:01:22 +00:00
|
|
|
function _s_admin_header_image() {
|
|
|
|
$header_text_color = get_header_textcolor();
|
|
|
|
?>
|
2012-01-31 20:18:40 +00:00
|
|
|
<div id="headimg">
|
|
|
|
<?php
|
2013-05-20 11:01:22 +00:00
|
|
|
if ( 'blank' == $header_text_color || '' == $header_text_color )
|
2012-01-31 20:18:40 +00:00
|
|
|
$style = ' style="display:none;"';
|
|
|
|
else
|
2013-05-20 11:01:22 +00:00
|
|
|
$style = ' style="color:#' . $header_text_color . ';"';
|
2012-01-31 20:18:40 +00:00
|
|
|
?>
|
2013-04-17 23:46:57 +00:00
|
|
|
<h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
|
|
|
|
<div class="displaying-header-text" id="desc"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div>
|
2012-01-31 20:18:40 +00:00
|
|
|
<?php $header_image = get_header_image();
|
|
|
|
if ( ! empty( $header_image ) ) : ?>
|
|
|
|
<img src="<?php echo esc_url( $header_image ); ?>" alt="" />
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
2013-05-20 11:01:22 +00:00
|
|
|
<?php
|
|
|
|
}
|
2013-04-17 23:46:57 +00:00
|
|
|
endif; // _s_admin_header_image
|