| 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/nexcraft/features/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
function nexcraft_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' => 5,
'panel' => 'nexcraft_frontpage_sections',
)
);
//Cta Documentation Link
class cleverfox_wp_cta_Customize_Control extends WP_Customize_Control {
public $type = 'new_menu';
function render_content()
{
?>
<h3><?php esc_html_e('Section Documentation','clever-fox'); ?></h3>
<p><a href="#" target="_blank" style="background-color:#03c281; color:#fff;display: flex;align-items: center;justify-content: center;text-decoration: none; font-weight: 600;padding: 15px 10px;"><?php esc_html_e('Click Here','clever-fox');?></a></p>
<?php
}
}
// Cta Doc Link //
$wp_customize->add_setting(
'cta_doc_link' ,
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control(new cleverfox_wp_cta_Customize_Control($wp_customize,
'cta_doc_link' ,
array(
'label' => __( 'Cta Documentation Link', 'clever-fox' ),
'section' => 'cta_setting',
'type' => 'radio',
'description' => __( 'Cta Documentation Link', 'clever-fox' ),
)
) );
// CTA Call Section //
$wp_customize->add_setting(
'cta_call_contents'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'nexcraft_sanitize_text',
'priority' => 1,
)
);
$wp_customize->add_control(
'cta_call_contents',
array(
'type' => 'hidden',
'label' => __('Content','clever-fox'),
'section' => 'cta_setting',
)
);
// Hide / Show
$wp_customize->add_setting(
'cta_hs'
,array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'nexcraft_sanitize_checkbox',
'priority' => 1,
)
);
$wp_customize->add_control(
'cta_hs',
array(
'type' => 'checkbox',
'label' => __('Hide / Show','clever-fox'),
'section' => 'cta_setting',
)
);
// CTA Title //
$wp_customize->add_setting(
'cta_title',
array(
'default' => __('We\'re Ready To Grow You Business Get Start Today!','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'nexcraft_sanitize_html',
'transport' => $selective_refresh,
'priority' => 9,
)
);
$wp_customize->add_control(
'cta_title',
array(
'label' => __('Title','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
$wp_customize->add_setting(
'cta_subtitle',
array(
'default' => __('Want To Work With Us?','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'nexcraft_sanitize_html',
'priority' => 9,
)
);
$wp_customize->add_control(
'cta_subtitle',
array(
'label' => __('Sub Title','clever-fox'),
'section' => 'cta_setting',
'type' => 'text',
)
);
// CTA Description //
$wp_customize->add_setting(
'cta_description',
array(
'default' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed interdum ac mauris sit
amet pretium. Sed fringilla mauris in eros porta posuere.','clever-fox'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'nexcraft_sanitize_html',
'transport' => $selective_refresh,
'priority' => 6,
)
);
$wp_customize->add_control(
'cta_description',
array(
'label' => __('Description','clever-fox'),
'section' => 'cta_setting',
'type' => 'textarea',
)
);
$wp_customize->add_setting(
'cta_bg_image' ,
array(
'default' => esc_url(CLEVERFOX_PLUGIN_URL .'inc/nexcraft/images/slider/slide-img2.jpg'),
'capability' => 'edit_theme_options',
'sanitize_callback' => 'nexcraft_sanitize_url',
'priority' => 14,
)
);
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize , 'cta_bg_image' ,
array(
'label' => __( 'Background Image', 'clever-fox' ),
'section' => 'cta_setting',
)
));
}
add_action( 'customize_register', 'nexcraft_cta_setting' );
// CTA selective refresh
function nexcraft_cta_section_partials( $wp_customize ){
// cta_call_icon
$wp_customize->selective_refresh->add_partial( 'cta_call_icon', array(
'selector' => '.cta-section-1 .cta-content .cta-info-wrap .widget-contact .contact-icon ',
'settings' => 'cta_call_icon',
'render_callback' => 'cleverfox_cta_call_icon_render_callback',
) );
// cta_btn_lbl
$wp_customize->selective_refresh->add_partial( 'cta_btn_lbl', array(
'selector' => '.cta-content a',
'settings' => 'cta_btn_lbl',
'render_callback' => 'cleverfox_cta_btn_lbl_render_callback',
) );
// cta_phone_number
$wp_customize->selective_refresh->add_partial( 'cta_phone_number', array(
'selector' => '.cta-section-1 .cta-content .cta-info-wrap .widget-contact .contact-info p a',
'settings' => 'cta_phone_number',
'render_callback' => 'cleverfox_cta_phone_number_render_callback',
) );
// nexcraft_cta_title
$wp_customize->selective_refresh->add_partial( 'cta_title', array(
'selector' => '.cta-content h3',
'settings' => 'cta_title',
'render_callback' => 'cleverfox_cta_title_render_callback',
) );
// nexcraft_cta_description
$wp_customize->selective_refresh->add_partial( 'cta_description', array(
'selector' => '.cta-content p',
'settings' => 'cta_description',
'render_callback' => 'cleverfox_cta_description_render_callback',
) );
}
add_action( 'customize_register', 'nexcraft_cta_section_partials' );
// cta_call_icon
function cleverfox_cta_call_icon_render_callback() {
return get_theme_mod( 'cta_call_icon' );
}
// cta_btn_lbl
function cleverfox_cta_btn_lbl_render_callback() {
return get_theme_mod( 'cta_btn_lbl' );
}
// cta_phone_number
function cleverfox_cta_phone_number_render_callback() {
return get_theme_mod( 'cta_phone_number' );
}
// nexcraft_cta_title
function cleverfox_cta_title_render_callback() {
return get_theme_mod( 'cta_title' );
}
// nexcraft_cta_description
function cleverfox_cta_description_render_callback() {
return get_theme_mod( 'cta_description' );
}