[ SEA-GHOST MINI SHELL]
<?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 ...
<?php if ( get_header_image() ) : ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="">
</a>
<?php endif; // End header image check. ?>
*
* @package Moesia
*/
/**
* Setup the WordPress core custom header feature.
*
* @uses moesia_header_style()
* @uses moesia_admin_header_style()
* @uses moesia_admin_header_image()
*/
function moesia_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'moesia_custom_header_args', array(
'default-image' => get_template_directory_uri() . '/images/header.jpg',
'width' => 1920,
'height' => 1080,
'flex-height' => true,
'wp-head-callback' => 'moesia_header_style',
'admin-head-callback' => 'moesia_admin_header_style',
'admin-preview-callback' => 'moesia_admin_header_image',
) ) );
}
add_action( 'after_setup_theme', 'moesia_custom_header_setup' );
if ( ! function_exists( 'moesia_header_style' ) ) :
/**
* Styles the header image
*
* @see moesia_custom_header_setup().
*/
function moesia_header_style() {
$himage = get_post_meta( get_the_ID(), 'wpcf-header-image', true );
if ( get_header_image() || $himage !='' ) {
?>
<style type="text/css">
@media only screen and (min-width: 1025px) {
.has-banner:after {
<?php if ( is_page() && $himage != '' ) : ?>
background-image: url(<?php echo esc_url($himage); ?>);
<?php else : ?>
background-image: url(<?php echo get_header_image(); ?>);
<?php endif; ?>
}
}
</style>
<?php }
}
endif; // moesia_header_style
if ( ! function_exists( 'moesia_admin_header_style' ) ) :
/**
* Styles the header image displayed on the Appearance > Header admin panel.
*
* @see moesia_custom_header_setup().
*/
function moesia_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; // moesia_admin_header_style
if ( ! function_exists( 'moesia_admin_header_image' ) ) :
/**
* Custom header image markup displayed on the Appearance > Header admin panel.
*
* @see moesia_custom_header_setup().
*/
function moesia_admin_header_image() {
$style = sprintf( ' style="color:#%s;"', get_header_textcolor() );
?>
<div id="headimg">
<h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
<div class="displaying-header-text" id="desc"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div>
<?php if ( get_header_image() ) : ?>
<img src="<?php header_image(); ?>" alt="">
<?php endif; ?>
</div>
<?php
}
endif; // moesia_admin_header_image
SEA-GHOST - SHELL CODING BY SEA-GHOST