2012-01-31 20:18:40 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-09-27 06:03:40 +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
|
|
|
*
|
2016-11-27 10:57:24 +00:00
|
|
|
<?php the_header_image_tag(); ?>
|
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' ) ) :
|
2017-06-28 01:27:25 +00:00
|
|
|
/**
|
|
|
|
* Styles the header image and text displayed on the blog.
|
|
|
|
*
|
|
|
|
* @see _s_custom_header_setup().
|
2015-12-15 02:05:14 +00:00
|
|
|
*/
|
2017-06-28 01:27:25 +00:00
|
|
|
function _s_header_style() {
|
|
|
|
$header_text_color = get_header_textcolor();
|
2013-05-20 11:01:22 +00:00
|
|
|
|
2017-06-28 01:27:25 +00:00
|
|
|
/*
|
|
|
|
* If no custom options for text are set, let's bail.
|
|
|
|
* get_header_textcolor() options: Any hex value, 'blank' to hide text. Default: add_theme_support( 'custom-header' ).
|
|
|
|
*/
|
|
|
|
if ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we get this far, we have custom styles. Let's do this.
|
|
|
|
?>
|
|
|
|
<style type="text/css">
|
|
|
|
<?php
|
2012-01-31 20:18:40 +00:00
|
|
|
// Has the text been hidden?
|
2015-09-17 15:58:03 +00:00
|
|
|
if ( ! display_header_text() ) :
|
2017-06-28 01:27:25 +00:00
|
|
|
?>
|
|
|
|
.site-title,
|
|
|
|
.site-description {
|
|
|
|
position: absolute;
|
|
|
|
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 {
|
|
|
|
color: #<?php echo esc_attr( $header_text_color ); ?>;
|
|
|
|
}
|
|
|
|
<?php endif; ?>
|
|
|
|
</style>
|
|
|
|
<?php
|
|
|
|
}
|
2015-12-15 02:05:14 +00:00
|
|
|
endif;
|