| 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/hantus/features/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
// Customizer tabs for slider section
if ( ! function_exists( 'hantus_slider_manager_customize_register' ) ) :
function hantus_slider_manager_customize_register( $wp_customize ) {
// Setting Head
$wp_customize->add_setting(
'hdr_search_setting_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'hdr_search_setting_head',
array(
'type' => 'hidden',
'label' => __('Setting','clever-fox'),
'section' => 'header_contact_cart',
'priority' => 1,
)
);
// Search Head
$wp_customize->add_setting(
'hdr_search_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'hdr_search_head',
array(
'type' => 'hidden',
'label' => __('Search','clever-fox'),
'section' => 'header_contact_cart',
'priority' => 3,
)
);
// Setting Head
$wp_customize->add_setting(
'menu_contact_setting_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'menu_contact_setting_head',
array(
'type' => 'hidden',
'label' => __('Setting','clever-fox'),
'section' => 'header_menu_contact',
'priority' => 1,
)
);
// Contact Head
$wp_customize->add_setting(
'menu_contact_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'menu_contact_head',
array(
'type' => 'hidden',
'label' => __('Content','clever-fox'),
'section' => 'header_menu_contact',
'priority' => 3,
)
);
// Setting Head
$wp_customize->add_setting(
'blog_setting_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'blog_setting_head',
array(
'type' => 'hidden',
'label' => __('Setting','clever-fox'),
'section' => 'blog_setting',
'priority' => 1,
)
);
// Setting Head
$wp_customize->add_setting(
'blog_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'blog_head',
array(
'type' => 'hidden',
'label' => __('Header','clever-fox'),
'section' => 'blog_setting',
'priority' => 5,
)
);
// Content Head
$wp_customize->add_setting(
'blog_content_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'blog_content_head',
array(
'type' => 'hidden',
'label' => __('Content','clever-fox'),
'section' => 'blog_setting',
'priority' => 9,
)
);
// Setting Head
$wp_customize->add_setting(
'copyright_setting_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'copyright_setting_head',
array(
'type' => 'hidden',
'label' => __('Setting','clever-fox'),
'section' => 'footer_copyright',
'priority' => 1,
)
);
// Content Head
$wp_customize->add_setting(
'copyright_content_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'copyright_content_head',
array(
'type' => 'hidden',
'label' => __('Content','clever-fox'),
'section' => 'footer_copyright',
'priority' => 5,
)
);
// Setting Head
$wp_customize->add_setting(
'footer_payment_setting_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'footer_payment_setting_head',
array(
'type' => 'hidden',
'label' => __('Setting','clever-fox'),
'section' => 'footer_icon',
'priority' => 1,
)
);
// Content Head
$wp_customize->add_setting(
'footer_payment_content_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'hantus_sanitize_text',
)
);
$wp_customize->add_control(
'footer_payment_content_head',
array(
'type' => 'hidden',
'label' => __('Content','clever-fox'),
'section' => 'footer_icon',
'priority' => 5,
)
);
}
add_action( 'customize_register', 'hantus_slider_manager_customize_register' );
endif;