File: /home/newsnnno/public_html/khaodeedee/blog/wp-content/themes/covernews/inc/custom-header.php
<?php
/**
* Sample implementation of the Custom Header feature
*
* You can add an optional custom header image to header.php like so ...
*
* <?php the_header_image_tag(); ?>
*
* @link https://developer.wordpress.org/themes/functionality/custom-headers/
*
* @package CoverNews
*/
/**
* Set up the WordPress core custom header feature.
*
* @uses covernews_header_style()
*/
function covernews_custom_header_setup()
{
add_theme_support('custom-header', apply_filters('covernews_custom_header_args', array(
'default-image' => '',
'default-text-color' => '000000',
'width' => 1900,
'height' => 600,
'flex-height' => true,
'wp-head-callback' => 'covernews_header_style',
)));
}
add_action('after_setup_theme', 'covernews_custom_header_setup');
if (!function_exists('covernews_header_style')) :
/**
* Styles the header image and text displayed on the blog.
*
* @see covernews_custom_header_setup().
*/
function covernews_header_style()
{
$header_image_tint_overlay = covernews_get_option('disable_header_image_tint_overlay');
$site_title_font_size = covernews_get_option('site_title_font_size');
$header_text_color = get_header_textcolor();
// If we get this far, we have custom styles. Let's do this.
?>
<style type="text/css">
<?php
if($header_image_tint_overlay):
?>
body .masthead-banner.data-bg:before {
background: rgba(0,0,0,0);
}
<?php
endif;
// Has the text been hidden?
if ( ! display_header_text() ) :
?>
.site-title,
.site-description {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
display: none;
}
<?php
// If the user has set a custom color for the text use that.
else :
?>
.site-title a,
.site-header .site-branding .site-title a:visited,
.site-header .site-branding .site-title a:hover,
.site-description {
color: #<?php echo esc_attr( $header_text_color ); ?>
}
body.aft-dark-mode .site-title a,
body.aft-dark-mode .site-header .site-branding .site-title a:visited,
body.aft-dark-mode .site-header .site-branding .site-title a:hover,
body.aft-dark-mode .site-description {
color: #ffffff;
}
.site-branding .site-title {
font-size: <?php echo esc_attr( $site_title_font_size ); ?>px;
}
@media only screen and (max-width: 640px) {
.header-layout-3 .site-header .site-branding .site-title,
.site-branding .site-title {
font-size: 60px;
}
}
@media only screen and (max-width: 375px) {
.header-layout-3 .site-header .site-branding .site-title,
.site-branding .site-title {
font-size: 50px;
}
}
<?php endif; ?>
.elementor-template-full-width .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-template-full-width .elementor-section.elementor-section-boxed > .elementor-container{
max-width: 1200px;
}
@media (min-width: 1600px){
.elementor-template-full-width .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-template-full-width .elementor-section.elementor-section-boxed > .elementor-container{
max-width: 1600px;
}
}
.align-content-left .elementor-section-stretched,
.align-content-right .elementor-section-stretched {
max-width: 100%;
left: 0 !important;
}
</style>
<?php
}
endif;