| 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/belltech/features/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
function metasoft_cta_setting( $wp_customize ) {
$selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh';
/*=========================================
CTA Section
=========================================*/
$wp_customize->add_section(
'cta_setting', array(
'title' => esc_html__( 'Call to Action Section', 'clever-fox' ),
'priority' => 2,
'panel' => 'metasoft_frontpage_sections',
)
);
/*=========================================
CTA Setting
=========================================*/
$wp_customize->add_setting(
'cta_setting_head'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_text',
'priority' => 1,
)
);
$wp_customize->add_control(
'cta_setting_head',
array(
'type' => 'hidden',
'label' => __('Setting','clever-fox'),
'section' => 'cta_setting',
)
);
// Hide / Show
$wp_customize->add_setting(
'cta_hs'
,array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_checkbox',
'priority' => 1,
)
);
$wp_customize->add_control(
'cta_hs',
array(
'type' => 'checkbox',
'label' => __('Hide / Show','clever-fox'),
'section' => 'cta_setting',
)
);
// CTA Content Section //
$wp_customize->add_setting(
'cta_contents'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_text',
'priority' => 3,
)
);
$wp_customize->add_control(
'cta_contents',
array(
'type' => 'hidden',
'label' => __('Content','clever-fox'),
'section' => 'cta_setting',
)
);
// CTA Title //
$wp_customize->add_setting(
'cta_title',
array(
'default' => __('Need Emergency <span>Plumbing Service?</span> Call us at','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_html',
'transport' => $selective_refresh,
'priority' => 4,
)
);
$wp_customize->add_control(
'cta_title',
array(
'label' => __('Title','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
// CTA Description //
$wp_customize->add_setting(
'cta_description',
array(
'default' => __('24 hours, 7 days a week, 365 days a year','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_html',
'transport' => $selective_refresh,
'priority' => 6,
)
);
$wp_customize->add_control(
'cta_description',
array(
'label' => __('Description','clever-fox'),
'section' => 'cta_setting',
'type' => 'textarea',
)
);
// Button First //
$wp_customize->add_setting(
'cta_btn_first'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_text',
'priority' => 7,
)
);
$wp_customize->add_control(
'cta_btn_first',
array(
'type' => 'hidden',
'label' => __('Button First','clever-fox'),
'section' => 'cta_setting',
)
);
$wp_customize->add_setting(
'cta_btn_lbl1',
array(
'default' => __('Contact With Us','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_html',
'transport' => $selective_refresh,
'priority' => 8,
)
);
$wp_customize->add_control(
'cta_btn_lbl1',
array(
'label' => __('Button Label','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
$wp_customize->add_setting(
'cta_btn_link1',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_url',
'priority' => 9,
)
);
$wp_customize->add_control(
'cta_btn_link1',
array(
'label' => __('Link','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
// Button Second //
$wp_customize->add_setting(
'cta_btn_second'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_text',
'priority' => 10,
)
);
$wp_customize->add_control(
'cta_btn_second',
array(
'type' => 'hidden',
'label' => __('Button Second','clever-fox'),
'section' => 'cta_setting',
)
);
$wp_customize->add_setting(
'cta_btn_second_ttl'
,array(
'default' => __('or','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_text',
'priority' => 10,
)
);
$wp_customize->add_control(
'cta_btn_second_ttl',
array(
'type' => 'text',
'label' => __('Middle Content','clever-fox'),
'section' => 'cta_setting',
)
);
// icon //
$wp_customize->add_setting(
'cta_btn2_icon',
array(
'default' => 'fa-bell',
'sanitize_callback' => 'sanitize_text_field',
'capability' => 'edit_theme_options',
'priority' => 11,
)
);
$wp_customize->add_control(new MetaSoft_Icon_Picker_Control($wp_customize,
'cta_btn2_icon',
array(
'label' => __('Icon','clever-fox'),
'section' => 'cta_setting',
'iconset' => 'fa',
))
);
$wp_customize->add_setting(
'cta_btn_lbl2',
array(
'default' => __('+1 (088) 456 888 (24/7)','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_html',
'transport' => $selective_refresh,
'priority' => 11,
)
);
$wp_customize->add_control(
'cta_btn_lbl2',
array(
'label' => __('Label','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
$wp_customize->add_setting(
'cta_btn_link2',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'metasoft_sanitize_url',
'priority' => 12,
)
);
$wp_customize->add_control(
'cta_btn_link2',
array(
'label' => __('Link','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
}
add_action( 'customize_register', 'metasoft_cta_setting' );
// CTA selective refresh
function metasoft_ata_section_partials( $wp_customize ){
// cta_title
$wp_customize->selective_refresh->add_partial( 'cta_title', array(
'selector' => '.home-cta .head h2',
'settings' => 'cta_title',
'render_callback' => 'metasoft_cta_title_render_callback',
) );
// cta_description
$wp_customize->selective_refresh->add_partial( 'cta_description', array(
'selector' => '.home-cta .head p',
'settings' => 'cta_description',
'render_callback' => 'metasoft_cta_description_render_callback',
) );
// cta_btn_lbl1
$wp_customize->selective_refresh->add_partial( 'cta_btn_lbl1', array(
'selector' => '.home-cta a.first',
'settings' => 'cta_btn_lbl1',
'render_callback' => 'metasoft_cta_btn_lbl1_render_callback',
) );
// cta_btn_lbl2
$wp_customize->selective_refresh->add_partial( 'cta_btn_lbl2', array(
'selector' => '.home-cta .learn-more a',
'settings' => 'cta_btn_lbl2',
'render_callback' => 'metasoft_cta_btn_lbl2_render_callback',
) );
}
add_action( 'customize_register', 'metasoft_ata_section_partials' );
// cta_title
function metasoft_cta_title_render_callback() {
return get_theme_mod( 'cta_title' );
}
// cta_description
function metasoft_cta_description_render_callback() {
return get_theme_mod( 'cta_description' );
}
// cta_btn_lbl1
function metasoft_cta_btn_lbl1_render_callback() {
return get_theme_mod( 'cta_btn_lbl1' );
}
// cta_btn_lbl2
function metasoft_cta_btn_lbl2_render_callback() {
return get_theme_mod( 'cta_btn_lbl2' );
}