File: /home/alfouzantranspor/www/wp-content/themes/land-excavator/revolution/inc/custom-header.php
<?php
/**
* Sample implementation of the Custom Header feature
*
* @package Land Excavator
*/
function land_excavator_custom_header_setup() {
add_theme_support(
'custom-header',
apply_filters(
'land_excavator_custom_header_args',
array(
'default-image' => '',
'default-text-color' => '000000',
'width' => 1000,
'height' => 250,
'flex-height' => true,
'wp-head-callback' => 'land_excavator_header_style',
)
)
);
}
add_action( 'after_setup_theme', 'land_excavator_custom_header_setup' );
if ( ! function_exists( 'land_excavator_header_style' ) ) :
function land_excavator_header_style() {
$land_excavator_header_text_color = get_header_textcolor();
if ( get_theme_support( 'custom-header', 'default-text-color' ) === $land_excavator_header_text_color ) {
return;
}
?>
<style type="text/css">
<?php
// Has the text been hidden?
if ( ! display_header_text() ) :
?>
.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 esc_attr( $land_excavator_header_text_color ); ?>;
}
<?php endif; ?>
</style>
<?php
}
endif;