*
* @package Nishita
*/
/**
* Setup the WordPress core custom header feature.
*
* @uses nishita_header_style()
* @uses nishita_admin_header_style()
* @uses nishita_admin_header_image()
*
* @package Nishita
*/
function nishita_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'nishita_custom_header_args', array(
'default-image' => '',
'default-text-color' => '727272',
'width' => 1024,
'height' => 295,
'wp-head-callback' => 'nishita_header_style',
'admin-head-callback' => 'nishita_admin_header_style',
'admin-preview-callback' => 'nishita_admin_header_image',
) ) );
}
add_action( 'after_setup_theme', 'nishita_custom_header_setup' );
if ( ! function_exists( 'nishita_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
*/
function nishita_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.
*/
function nishita_admin_header_style() {
?>
Header admin panel.
*/
function nishita_admin_header_image() { ?>
>