File "custom-header.php"
Full Path: /home/elegucvf/public_html/video/wp-content/wp-includes/wp-content/themes/avril/inc/custom-header.php
File size: 976 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
function avril_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'avril_custom_header_args', array(
'default-image' => '',
'default-text-color' => '383E41',
'width' => 2000,
'height' => 200,
'flex-height' => true,
'wp-head-callback' => 'avril_header_style',
) ) );
}
add_action( 'after_setup_theme', 'avril_custom_header_setup' );
if ( ! function_exists( 'avril_header_style' ) ) :
function avril_header_style() {
$header_text_color = get_header_textcolor();
?>
<style type="text/css">
<?php
if ( ! display_header_text() ) :
?>
.site-title,
.site-description {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
}
<?php
else :
?>
body .header h4.site-title,
body .header p.site-description {
color: #<?php echo esc_attr( $header_text_color ); ?>;
}
<?php endif; ?>
</style>
<?php
}
endif;