File: /home/mmickelson/martyknows.com/wp-content/themes/grisaille/inc/custom-header.php
<?php
/**
* @package Grisaille
* @since Grisaille 1.4
*/
/**
* 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.
*
* @uses grisaille_header_style()
* @uses grisaille_admin_header_style()
* @uses grisaille_admin_header_image()
*
* @package Grisaille
*/
function grisaille_custom_header_setup() {
$args = array(
'default-image' => '',
'default-text-color' => '334759',
'width' => 960,
'height' => 200,
'flex-height' => true,
'wp-head-callback' => 'grisaille_header_style',
'admin-head-callback' => 'grisaille_admin_header_style',
'admin-preview-callback' => 'grisaille_admin_header_image',
);
$args = apply_filters( 'grisaille_custom_header_args', $args );
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', 'grisaille_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.
*
* @return stdClass All properties represent attributes of the curent header image.
*
* @package Grisaille
* @since Grisaille 1.4
*/
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( 'grisaille_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
*
* @see grisaille_custom_header_setup().
*
* @since Grisaille 1.3.1-wpcom
*/
function grisaille_header_style() {
// If we get this far, we have custom styles. Let's do this.
?>
<style type="text/css">
#site-title {
margin: 20px 0;
min-height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
}
img.grisaille-header-image {
-webkit-background-size:cover;
-moz-background-size:cover;
background-size:cover;
padding: 0;
border: none;
margin: 0;
max-width: 100%;
}
#site-title img.grisaille-header-image + h1 {
padding-top: 0;
}
#site-title h1 a {
color: #<?php header_textcolor(); ?>;
}
#site-description {
color: #<?php header_textcolor(); ?>;
}
<?php //only header image, no text
if ( 'blank' == get_header_textcolor() ) { ?>
#site-title h1 {
padding: 0;
}
#site-title h1 a {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
display: block;
text-indent: -99999px;
}
#site-description {
display: none;
text-indent: -99999px;
}
<?php } ?>
</style>
<?php
}
endif; // grisaille_header_style
if ( ! function_exists( 'grisaille_admin_header_style' ) ) :
/**
* Styles the header image displayed on the Appearance > Header admin panel.
*
* @see grisaille_custom_header_setup().
*
* @since Grisaille 1.4
*/
function grisaille_admin_header_style() {
wp_enqueue_style( 'grisaille-fonts', 'http://fonts.googleapis.com/css?family=Marvel|Bigshot+One' );
?>
<style type="text/css">
#headimg {
margin: 0;
min-height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
}
#headimg h1 {
margin: 0;
word-wrap: break-word;
}
#headimg h1 a {
font: 70px 'Bigshot One', "Times New Roman", Times, serif;
line-height: 70px;
text-transform: uppercase;
text-decoration: none;
}
#desc {
font: 22px Geneva, Verdana, sans-serif;
line-height: 52px;
word-wrap: break-word;
}
.appearance_page_custom-header #headimg {
width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
}
.masthead {
min-height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
}
.masthead.grisaille-admin-header-image {
background: url(<?php echo get_header_image(); ?>) 0 0 no-repeat;
}
</style>
<?php
}
endif; // grisaille_admin_header_style
if ( ! function_exists( 'grisaille_admin_header_image' ) ) :
/**
* Custom header image markup displayed on the Appearance > Header admin panel.
*
* @see grisaille_custom_header_setup().
*
* @since Grisaille 1.4
*/
function grisaille_admin_header_image() { ?>
<div id="headimg">
<?php
if ( 'blank' == get_theme_mod( 'header_textcolor', HEADER_TEXTCOLOR ) || '' == get_theme_mod( 'header_textcolor', HEADER_TEXTCOLOR ) )
$style = ' style="display:none;"';
else
$style = ' style="color:#' . get_theme_mod( 'header_textcolor', HEADER_TEXTCOLOR ) . ';"';
?>
<?php $header_image = get_header_image();
if ( ! empty( $header_image ) ) : ?>
<div class="masthead grisaille-admin-header-image">
<?php endif; ?>
<div class="masthead">
<h1><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
<div id="desc"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div>
</div>
</div>
<?php }
endif; // grisaille_admin_header_image