'corporacy_service_jetpack_note', 'sanitize_callback' => 'sanitize_text_field', 'custom_control' => 'Corporacy_Note_Control', 'label' => sprintf( esc_html__( 'For all Services Options, go %1$shere%2$s', 'corporacy' ), '', '' ), 'section' => 'services', 'type' => 'description', 'priority' => 1, ) ); $wp_customize->add_section( 'corporacy_service', array( 'title' => esc_html__( 'Services', 'corporacy' ), 'panel' => 'corporacy_theme_options', ) ); $action = 'install-plugin'; $slug = 'essential-content-types'; $install_url = wp_nonce_url( add_query_arg( array( 'action' => $action, 'plugin' => $slug ), admin_url( 'update.php' ) ), $action . '_' . $slug ); corporacy_register_option( $wp_customize, array( 'name' => 'corporacy_service_jetpack_note', 'sanitize_callback' => 'sanitize_text_field', 'custom_control' => 'Corporacy_Note_Control', 'active_callback' => 'corporacy_is_ect_services_inactive', /* translators: 1: /link tag start, 2: /link tag close. */ 'label' => sprintf( esc_html__( 'For Services, install %1$sEssential Content Types%2$s Plugin with Service Type Enabled', 'corporacy' ), '', '' ), 'section' => 'corporacy_service', 'type' => 'description', 'priority' => 1, ) ); // Add color scheme setting and control. corporacy_register_option( $wp_customize, array( 'name' => 'corporacy_service_option', 'default' => 'disabled', 'active_callback' => 'corporacy_is_ect_services_active', 'sanitize_callback' => 'corporacy_sanitize_select', 'choices' => corporacy_section_visibility_options(), 'label' => esc_html__( 'Enable on', 'corporacy' ), 'section' => 'corporacy_service', 'type' => 'select', ) ); corporacy_register_option( $wp_customize, array( 'name' => 'corporacy_service_cpt_note', 'sanitize_callback' => 'sanitize_text_field', 'custom_control' => 'Corporacy_Note_Control', 'active_callback' => 'corporacy_is_services_active', /* translators: 1: /link tag start, 2: /link tag close. */ 'label' => sprintf( esc_html__( 'For CPT heading and sub-heading, go %1$shere%2$s', 'corporacy' ), '', '' ), 'section' => 'corporacy_service', 'type' => 'description', ) ); corporacy_register_option( $wp_customize, array( 'name' => 'corporacy_service_number', 'default' => 3, 'sanitize_callback' => 'corporacy_sanitize_number_range', 'active_callback' => 'corporacy_is_services_active', 'description' => esc_html__( 'Save and refresh the page if No. of Services is changed (Max no of Services is 20)', 'corporacy' ), 'input_attrs' => array( 'style' => 'width: 100px;', 'min' => 0, ), 'label' => esc_html__( 'No of items', 'corporacy' ), 'section' => 'corporacy_service', 'type' => 'number', 'transport' => 'postMessage', ) ); $number = get_theme_mod( 'corporacy_service_number', 3 ); //loop for services post content for ( $i = 1; $i <= $number ; $i++ ) { corporacy_register_option( $wp_customize, array( 'name' => 'corporacy_service_cpt_' . $i, 'sanitize_callback' => 'corporacy_sanitize_post', 'active_callback' => 'corporacy_is_services_active', 'label' => esc_html__( 'Services', 'corporacy' ) . ' ' . $i , 'section' => 'corporacy_service', 'type' => 'select', 'choices' => corporacy_generate_post_array( 'ect-service' ), ) ); } // End for(). } add_action( 'customize_register', 'corporacy_service_options', 10 ); /** Active Callback Functions **/ if ( ! function_exists( 'corporacy_is_services_active' ) ) : /** * Return true if services content is active * * @since Corporacy 1.0 */ function corporacy_is_services_active( $control ) { $enable = $control->manager->get_setting( 'corporacy_service_option' )->value(); //return true only if previewed page on customizer matches the type of content option selected return ( corporacy_is_ect_services_active( $control ) && corporacy_check_section( $enable ) ); } endif; if ( ! function_exists( 'corporacy_is_ect_services_inactive' ) ) : /** * Return true if service is active * * @since Corporacy 1.0 */ function corporacy_is_ect_services_inactive( $control ) { return ! ( class_exists( 'Essential_Content_Service' ) || class_exists( 'Essential_Content_Pro_Service' ) ); } endif; if ( ! function_exists( 'corporacy_is_ect_services_active' ) ) : /** * Return true if service is active * * @since Corporacy 1.0 */ function corporacy_is_ect_services_active( $control ) { return ( class_exists( 'Essential_Content_Service' ) || class_exists( 'Essential_Content_Pro_Service' ) ); } endif;