'disabled', 'alpert_slider_number' => 2, ); $updated_defaults = wp_parse_args( $defaults, $default_options ); return $updated_defaults; } /** * Add slider section and its controls */ public function register_options( $wp_customize ) { Alpert_Customizer_Utilities::register_option( array( 'settings' => 'alpert_slider_visibility', 'type' => 'select', 'sanitize_callback' => 'alpert_sanitize_select', 'label' => esc_html__( 'Visible On', 'alpert' ), 'section' => 'alpert_ss_slider', 'choices' => Alpert_Customizer_Utilities::section_visibility(), ) ); Alpert_Customizer_Utilities::register_option( array( 'type' => 'number', 'settings' => 'alpert_slider_number', 'label' => esc_html__( 'Number', 'alpert' ), 'description' => esc_html__( 'Please refresh the customizer page once the number is changed.', 'alpert' ), 'section' => 'alpert_ss_slider', 'sanitize_callback' => 'absint', 'input_attrs' => array( 'min' => 1, 'max' => 80, 'step' => 1, 'style' => 'width:100px;', ), 'active_callback' => array( $this, 'is_slider_visible' ), ) ); $numbers = alpert_gtm( 'alpert_slider_number' ); for( $i = 0, $j = 1; $i < $numbers; $i++, $j++ ) { Alpert_Customizer_Utilities::register_option( array( 'custom_control' => 'Alpert_Simple_Notice_Custom_Control', 'sanitize_callback' => 'alpert_text_sanitization', 'settings' => 'alpert_slider_notice_' . $i, 'label' => esc_html__( 'Item #', 'alpert' ) . $j, 'section' => 'alpert_ss_slider', 'active_callback' => array( $this, 'is_slider_visible' ), ) ); Alpert_Customizer_Utilities::register_option( array( 'custom_control' => 'Alpert_Dropdown_Posts_Custom_Control', 'sanitize_callback' => 'absint', 'settings' => 'alpert_slider_page_' . $i, 'label' => esc_html__( 'Select Page', 'alpert' ), 'section' => 'alpert_ss_slider', 'active_callback' => array( $this, 'is_slider_visible' ), 'input_attrs' => array( 'post_type' => 'page', 'posts_per_page' => -1, 'orderby' => 'name', 'order' => 'ASC', ), ) ); } } /** * Slider visibility active callback. */ public function is_slider_visible( $control ) { return ( alpert_display_section( $control->manager->get_setting( 'alpert_slider_visibility' )->value() ) ); } } /** * Initialize class */ $slider_ss_slider = new Alpert_Slider_Options();