| Server IP : 77.50.203.18 / Your IP : 192.168.0.10 Web Server : Apache/2.4.62 (CentOS Stream) OpenSSL/3.5.7 mpm-itk/2.4.7-04 PHP/8.4.23 System : Linux web2 5.14.0-722.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 09:07:51 UTC 2026 x86_64 User : warsnews.ru ( 1001) PHP Version : 8.4.23 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/ifwar.ru/www/wp-content/plugins/clever-fox/inc/boostify/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
if( ! function_exists( 'cleverfox_boostify_dynamic_style' ) ):
function cleverfox_boostify_dynamic_style() {
$output_css = '';
/**
* Logo Width
*/
$logo_width = get_theme_mod('logo_width','140');
if($logo_width !== '') {
$output_css .=".logo img, .mobile-logo img {
max-width: " .esc_attr($logo_width). "px;
}\n";
}
/**
* Slider
*/
$slider_overlay_enable = get_theme_mod('slider_overlay_enable');
$slide_overlay_color = get_theme_mod('slide_overlay_color','#fff');
$slider_opacity = get_theme_mod('slider_opacity');
if($slider_overlay_enable == '1') {
$output_css .=".theme-slider:after {
opacity: " .esc_attr($slider_opacity). ";
background: " .esc_attr($slide_overlay_color). ";
}\n";
}
/**
* Typography Body
*/
$boostify_body_text_transform = get_theme_mod('boostify_body_text_transform','inherit');
$boostify_body_font_style = get_theme_mod('boostify_body_font_style','inherit');
$boostify_body_font_size = get_theme_mod('boostify_body_font_size','15');
$boostify_body_line_height = get_theme_mod('boostify_body_line_height','1.5');
$output_css .=" body,p{
font-size: " .esc_attr($boostify_body_font_size). "px;
line-height: " .esc_attr($boostify_body_line_height). ";
text-transform: " .esc_attr($boostify_body_text_transform). ";
font-style: " .esc_attr($boostify_body_font_style). ";
}\n";
/**
* Typography Heading
*/
for ( $i = 1; $i <= 6; $i++ ) {
$boostify_heading_text_transform = get_theme_mod('boostify_h' . $i . '_text_transform','inherit');
$boostify_heading_font_style = get_theme_mod('boostify_h' . $i . '_font_style','inherit');
$boostify_heading_font_size = get_theme_mod('boostify_h' . $i . '_font_size');
$boostify_heading_line_height = get_theme_mod('boostify_h' . $i . '_line_height');
$output_css .=" h" . $i . "{
font-size: " .esc_attr($boostify_heading_font_size). "px;
line-height: " .esc_attr($boostify_heading_line_height). ";
text-transform: " .esc_attr($boostify_heading_text_transform). ";
font-style: " .esc_attr($boostify_heading_font_style). ";
}\n";
}
wp_add_inline_style( 'boostify-style', $output_css );
}
endif;
add_action( 'wp_enqueue_scripts', 'cleverfox_boostify_dynamic_style' );