2012-01-31 20:18:40 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-07-01 15:21:44 +00:00
|
|
|
* Sample implementation of the Custom Header feature.
|
2012-01-31 20:18:40 +00:00
|
|
|
*
|
|
|
|
* You can add an optional custom header image to header.php like so ...
|
2015-05-27 17:49:01 +00:00
|
|
|
*
|
2013-09-23 21:39:15 +00:00
|
|
|
<?php if ( get_header_image() ) : ?>
|
2013-09-25 21:59:11 +00:00
|
|
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
|
2014-08-07 04:07:50 +00:00
|
|
|
<img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="">
|
2013-09-23 21:39:15 +00:00
|
|
|
</a>
|
|
|
|
<?php endif; // End header image check. ?>
|
2012-01-31 20:18:40 +00:00
|
|
|
*
|
2015-12-01 20:06:47 +00:00
|
|
|
* @link https://developer.wordpress.org/themes/functionality/custom-headers/
|
2015-07-01 15:21:44 +00:00
|
|
|
*
|
2012-01-31 20:18:40 +00:00
|
|
|
* @package _s
|
|
|
|
*/
|
|
|
|
|
2012-04-23 22:52:48 +00:00
|
|
|
/**
|
2014-08-07 03:36:07 +00:00
|
|
|
* Set up the WordPress core custom header feature.
|
2012-04-23 22:52:48 +00:00
|
|
|
*
|
|
|
|
* @uses _s_header_style()
|
|
|
|
*/
|
2012-01-31 20:18:40 +00:00
|
|
|
function _s_custom_header_setup() {
|
2013-06-27 14:14:12 +00:00
|
|
|
add_theme_support( 'custom-header', apply_filters( '_s_custom_header_args', array(
|
2012-04-23 22:52:48 +00:00
|
|
|
'default-image' => '',
|
2013-10-08 19:59:35 +00:00
|
|
|
'default-text-color' => '000000',
|
2012-04-23 22:52:48 +00:00
|
|
|
'width' => 1000,
|
|
|
|
'height' => 250,
|
|
|
|
'flex-height' => true,
|
|
|
|
'wp-head-callback' => '_s_header_style',
|
2013-06-27 14:14:12 +00:00
|
|
|
) ) );
|
2012-04-23 22:52:48 +00:00
|
|
|
}
|
|
|
|
add_action( 'after_setup_theme', '_s_custom_header_setup' );
|
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
|
2015-05-27 17:49:01 +00:00
|
|
|
// get_header_textcolor() options: HEADER_TEXTCOLOR is default, hide text (returns 'blank') or any hex value.
|
2015-08-07 16:59:26 +00:00
|
|
|
if ( HEADER_TEXTCOLOR === $header_text_color ) {
|
2012-01-31 20:18:40 +00:00
|
|
|
return;
|
2013-11-14 12:49:50 +00:00
|
|
|
}
|
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?
|
2015-09-17 15:58:03 +00:00
|
|
|
if ( ! display_header_text() ) :
|
2012-01-31 20:18:40 +00:00
|
|
|
?>
|
|
|
|
.site-title,
|
|
|
|
.site-description {
|
2013-04-22 15:47:14 +00:00
|
|
|
position: absolute;
|
2012-01-31 20:18:40 +00:00
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
}
|
|
|
|
<?php
|
2015-05-27 17:49:01 +00:00
|
|
|
// If the user has set a custom color for the text use that.
|
2012-01-31 20:18:40 +00:00
|
|
|
else :
|
|
|
|
?>
|
|
|
|
.site-title a,
|
|
|
|
.site-description {
|
2014-11-01 00:09:58 +00:00
|
|
|
color: #<?php echo esc_attr( $header_text_color ); ?>;
|
2012-01-31 20:18:40 +00:00
|
|
|
}
|
|
|
|
<?php endif; ?>
|
|
|
|
</style>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
endif; // _s_header_style
|