selective_refresh ) ? 'postMessage' : 'refresh'; /*========================================= Service Section =========================================*/ $wp_customize->add_section( 'service_setting', array( 'title' => esc_html__( 'Service Section', 'artech' ), 'priority' => 3, 'panel' => 'artech_frontpage_sections', ) ); // Service Section // $wp_customize->add_setting( 'service_headings' ,array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_text', 'priority' => 3, ) ); $wp_customize->add_control( 'service_headings', array( 'type' => 'hidden', 'label' => __('Services','artech'), 'section' => 'service_setting', ) ); // Service Title // $wp_customize->add_setting( 'service_title', array( 'default' => __('Mind Blowing Service','artech'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_html', 'priority' => 4, ) ); $wp_customize->add_control( 'service_title', array( 'label' => __('Title','artech'), 'section' => 'service_setting', 'type' => 'text', ) ); // Service Subtitle // $wp_customize->add_setting( 'service_subtitle', array( 'default' => __('Our Service','artech'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_html', 'priority' => 5, ) ); $wp_customize->add_control( 'service_subtitle', array( 'label' => __('Subtitle','artech'), 'section' => 'service_setting', 'type' => 'text', ) ); // Service content Section // $wp_customize->add_setting( 'service_content_head' ,array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'artech_sanitize_text', 'priority' => 7, ) ); $wp_customize->add_control( 'service_content_head', array( 'type' => 'hidden', 'label' => __('Content','artech'), 'section' => 'service_setting', ) ); /** * Customizer Repeater for add service */ $wp_customize->add_setting( 'service_contents', array( 'sanitize_callback' => 'artech_repeater_sanitize', 'priority' => 8, 'default' => artech_get_service_default() ) ); $wp_customize->add_control( new Artech_Repeater( $wp_customize, 'service_contents', array( 'label' => esc_html__('Service','artech'), 'section' => 'service_setting', 'add_field_label' => esc_html__( 'Add New Service', 'artech' ), 'item_name' => esc_html__( 'Service', 'artech' ), 'customizer_repeater_icon_control' => true, 'customizer_repeater_image_control' => true, 'customizer_repeater_title_control' => true, ) ) ); //Pro feature class Artech_service__section_upgrade extends WP_Customize_Control { public function render_content() { ?> add_setting( 'Artech_service_upgrade_to_pro', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_filter_nohtml_kses', 'priority' => 5, )); $wp_customize->add_control( new Artech_service__section_upgrade( $wp_customize, 'Artech_service_upgrade_to_pro', array( 'section' => 'service_setting', 'settings' => 'Artech_service_upgrade_to_pro', ) ) ); } add_action( 'customize_register', 'artech_service_setting' ); // service selective refresh function artech_home_service_section_partials( $wp_customize ){ // service title $wp_customize->selective_refresh->add_partial( 'service_title', array( 'selector' => '.service-home .section-title h2.section-title-heading', 'settings' => 'service_title', 'render_callback' => 'artech_service_title_render_callback', ) ); // service subtitle $wp_customize->selective_refresh->add_partial( 'service_subtitle', array( 'selector' => '.service-home .section-title span.sub-title', 'settings' => 'service_subtitle', 'render_callback' => 'artech_service_subtitle_render_callback', ) ); // service content $wp_customize->selective_refresh->add_partial( 'service_contents', array( 'selector' => '.service-home .service-content .service-heading' ) ); } add_action( 'customize_register', 'artech_home_service_section_partials' ); // service title function artech_service_title_render_callback() { return get_theme_mod( 'service_title' ); } // service subtitle function artech_service_subtitle_render_callback() { return get_theme_mod( 'service_subtitle' ); }