| 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/medazin/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
if( ! function_exists( 'cleverfox_medazin_dynamic_styles' ) ):
function cleverfox_medazin_dynamic_styles() {
$output_css = '';
$cleverfox_theme = wp_get_theme(); // gets the current theme
/**
* Logo Width
*/
$logo_width = get_theme_mod('logo_width','220');
if($logo_width !== '') {
$output_css .=".main-navigation a img, .mobile-logo img {
max-width: " .esc_attr($logo_width). "px;
}\n";
}
/**
* CTA
*/
$cta_bg_setting = get_theme_mod('cta_bg_setting',esc_url(CLEVERFOX_PLUGIN_URL . 'inc/medazin/images/slider/img01.jpg'));
$output_css .=".cta-section {
background-image: url(".esc_url($cta_bg_setting).");
}\n";
/**
* Typography Body
*/
$medazin_body_text_transform = get_theme_mod('medazin_body_text_transform','inherit');
$medazin_body_font_style = get_theme_mod('medazin_body_font_style','inherit');
$medazin_body_font_size = get_theme_mod('medazin_body_font_size','15');
$medazin_body_line_height = get_theme_mod('medazin_body_line_height','1.5');
$output_css .=" body{
font-size: " .esc_attr($medazin_body_font_size). "px;
line-height: " .esc_attr($medazin_body_line_height). ";
text-transform: " .esc_attr($medazin_body_text_transform). ";
font-style: " .esc_attr($medazin_body_font_style). ";
}\n";
/**
* Typography Heading
*/
for ( $i = 1; $i <= 6; $i++ ) {
$medazin_heading_text_transform = get_theme_mod('medazin_h' . $i . '_text_transform','inherit');
$medazin_heading_font_style = get_theme_mod('medazin_h' . $i . '_font_style','inherit');
$medazin_heading_font_size = get_theme_mod('medazin_h' . $i . '_font_size');
$medazin_heading_line_height = get_theme_mod('medazin_h' . $i . '_line_height');
$output_css .=" h" . $i . "{
font-size: " .esc_attr($medazin_heading_font_size). "px;
line-height: " .esc_attr($medazin_heading_line_height). ";
text-transform: " .esc_attr($medazin_heading_text_transform). ";
font-style: " .esc_attr($medazin_heading_font_style). ";
}\n";
}
wp_add_inline_style( 'medazin-style', $output_css );
}
endif;
add_action( 'wp_enqueue_scripts', 'cleverfox_medazin_dynamic_styles' );
?>