0byt3m1n1
Path:
/
var
/
lib
/
vz
/
www
/
clients
/
client6
/
web11
/
web
/
wp-content
/
themes
/
accesspress-lite
/
inc
/
[
Home
]
File: custom-header.php
<?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 .. * * @package AccesspressLite */ /** * Setup the WordPress core custom header feature. * * @uses accesspresslite_header_style() * @uses accesspresslite_admin_header_style() * @uses accesspresslite_admin_header_image() */ function accesspresslite_custom_header_setup() { $accesspresslite_options = accesspress_default_setting_value(); $accesspresslite_settings = get_option( 'accesspresslite_options', $accesspresslite_options ); $home_template = $accesspresslite_settings['accesspresslite_home_template']; if($home_template == 'template_one'){ add_theme_support( 'custom-header', apply_filters( 'accesspresslite_custom_header_args', array( 'default-image' => get_template_directory_uri() . '/images/demo/logo.png', 'default-text-color' => '000000', 'width' => 190, 'height' => 70, 'flex-height' => true, 'flex-width' => true, 'wp-head-callback' => 'accesspresslite_header_style', 'admin-head-callback' => 'accesspresslite_admin_header_style', 'admin-preview-callback' => 'accesspresslite_admin_header_image', ) ) ); } else { add_theme_support( 'custom-header', apply_filters( 'accesspresslite_custom_header_args', array( 'default-image' => get_template_directory_uri() . '/images/demo/logo2.png', 'default-text-color' => '000000', 'width' => 190, 'height' => 70, 'flex-height' => true, 'flex-width' => true, 'wp-head-callback' => 'accesspresslite_header_style', 'admin-head-callback' => 'accesspresslite_admin_header_style', 'admin-preview-callback' => 'accesspresslite_admin_header_image', ) ) ); } } add_action( 'after_setup_theme', 'accesspresslite_custom_header_setup' ); if ( ! function_exists( 'accesspresslite_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see accesspresslite_custom_header_setup(). */ function accesspresslite_header_style() { $header_text_color = get_header_textcolor(); // 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 == $header_text_color ) { return; } // If we get this far, we have custom styles. Let's do this. ?> <style type="text/css"> <?php // Has the text been hidden? if ( 'blank' == $header_text_color ) : ?> .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 $header_text_color; ?>; } <?php endif; ?> </style> <?php } endif; // accesspresslite_header_style if ( ! function_exists( 'accesspresslite_admin_header_style' ) ) : /** * Styles the header image displayed on the Appearance > Header admin panel. * * @see accesspresslite_custom_header_setup(). */ function accesspresslite_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; // accesspresslite_admin_header_style if ( ! function_exists( 'accesspresslite_admin_header_image' ) ) : /** * Custom header image markup displayed on the Appearance > Header admin panel. * * @see accesspresslite_custom_header_setup(). */ function accesspresslite_admin_header_image() { $style = sprintf( ' style="color:#%s;"', get_header_textcolor() ); ?> <div id="heading"> <?php if ( get_header_image() ) : ?> <img src="<?php header_image(); ?>" alt=""> <?php endif; ?> </div> <?php } endif; // accesspresslite_admin_header_image