| Server IP : 64.225.102.56 / Your IP : 216.73.216.220 Web Server : Apache/2.4.68 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2 System : Linux smtp.zejefoy.com 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : auto ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/auto/web/cifisoa.com/public_html/wp-content/themes/newsever/inc/ |
Upload File : |
<?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 Newsever
*/
/**
* Set up the WordPress core custom header feature.
*
* @uses newsever_header_style()
*/
function newsever_custom_header_setup()
{
add_theme_support('custom-header', apply_filters('newsever_custom_header_args', array(
'default-image' => '',
'default-text-color' => '000000',
'width' => 1900,
'height' => 600,
'flex-height' => true,
'wp-head-callback' => 'newsever_header_style',
)));
}
add_action('after_setup_theme', 'newsever_custom_header_setup');
if (!function_exists('newsever_header_style')) :
/**
* Styles the header image and text displayed on the blog.
*
* @see newsever_custom_header_setup().
*/
function newsever_header_style()
{
$header_image_tint_overlay = newsever_get_option('disable_header_image_tint_overlay');
$site_title_font_size = newsever_get_option('site_title_font_size');
$header_text_color = get_header_textcolor();
$main_banner_section_background_image = newsever_get_option('main_banner_section_background_image');
// If we get this far, we have custom styles. Let's do this.
?>
<style type="text/css">
<?php
if($header_image_tint_overlay):
?>
body .header-style1 .top-header.data-bg:before,
body .header-style1 .main-header.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 :
?>
body .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 ); ?>;
}
.header-layout-3 .site-header .site-branding .site-title,
.site-branding .site-title {
font-size: <?php echo esc_attr( $site_title_font_size ); ?>px;
}
@media only screen and (max-width: 640px) {
.site-branding .site-title {
font-size: 40px;
}
}
@media only screen and (max-width: 375px) {
.site-branding .site-title {
font-size: 32px;
}
}
<?php endif; ?>
<?php
if (!empty($main_banner_section_background_image)):
$main_banner_section_background_image = absint($main_banner_section_background_image);
$main_banner_section_background_image_url = wp_get_attachment_image_src($main_banner_section_background_image, 'full');
?>
body.aft-light-mode .aft-blocks.banner-carousel-1-wrap ,
body.aft-dark-mode .aft-blocks.banner-carousel-1-wrap ,
body.aft-default-mode .aft-blocks.banner-carousel-1-wrap {
background-image: url( <?php echo $main_banner_section_background_image_url[0]; ?>);
}
<?php endif; ?>
.elementor-page .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-page .elementor-section.elementor-section-boxed > .elementor-container,
.elementor-default .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-default .elementor-section.elementor-section-boxed > .elementor-container{
max-width: 1500px;
}
.align-content-left .elementor-section-stretched,
.align-content-right .elementor-section-stretched {
max-width: 100%;
left: 0 !important;
}
}
</style>
<?php
}
endif;