| 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/eduvert/features/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
function eduvert_lite_header_settings( $wp_customize ) {
$selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh';
/*=========================================
Eduvert Site Identity
=========================================*/
// Logo Width //
if ( class_exists( 'Cleverfox_Customizer_Range_Slider_Control' ) ) {
$wp_customize->add_setting(
'logo_width',
array(
'default' => '140',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'eduvert_sanitize_range_value',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
new Cleverfox_Customizer_Range_Slider_Control( $wp_customize, 'logo_width',
array(
'label' => __( 'Logo Width', 'clever-fox' ),
'section' => 'title_tagline',
'input_attrs' => array(
'min' => 0,
'max' => 500,
'step' => 1,
//'suffix' => 'px', //optional suffix
)
) )
);
}
/*=========================================
Social
=========================================*/
$wp_customize->add_setting(
'hdr_social_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'eduvert_sanitize_text',
'priority' => 9,
)
);
$wp_customize->add_control(
'hdr_social_head',
array(
'type' => 'hidden',
'label' => __('Social Icons','clever-fox'),
'section' => 'header_navigation',
)
);
$wp_customize->add_setting(
'hide_show_social_icon' ,
array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'eduvert_sanitize_checkbox',
'priority' => 10,
)
);
$wp_customize->add_control(
'hide_show_social_icon',
array(
'label' => esc_html__( 'Hide/Show', 'clever-fox' ),
'section' => 'header_navigation',
'type' => 'checkbox'
)
);
/**
* Customizer Repeater
*/
$wp_customize->add_setting( 'social_icons',
array(
'sanitize_callback' => 'eduvert_repeater_sanitize',
'priority' => 11,
'default' => eduvert_get_social_icon_default()
)
);
$wp_customize->add_control(
new EDUVERT_Repeater( $wp_customize,
'social_icons',
array(
'label' => esc_html__('Social Icons','clever-fox'),
'section' => 'header_navigation',
'add_field_label' => esc_html__( 'Add New Social', 'clever-fox' ),
'item_name' => esc_html__( 'Social', 'clever-fox' ),
'customizer_repeater_icon_control' => true,
'customizer_repeater_link_control' => true,
)
)
);
//Pro feature
class Eduvert_social__section_upgrade extends WP_Customize_Control {
public function render_content() {
?>
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/eduvert-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php
}
}
$wp_customize->add_setting( 'eduvert_social_upgrade_to_pro', array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'wp_filter_nohtml_kses',
));
$wp_customize->add_control(
new Eduvert_social__section_upgrade(
$wp_customize,
'eduvert_social_upgrade_to_pro',
array(
'section' => 'header_navigation',
'settings' => 'eduvert_social_upgrade_to_pro',
)
)
);
}
add_action( 'customize_register', 'eduvert_lite_header_settings' );