'disabled', 'acumen_wwd_number' => 6, ); $updated_defaults = wp_parse_args( $defaults, $default_options ); return $updated_defaults; } /** * Add layouts section and its controls */ public function register_options( $wp_customize ) { Acumen_Customizer_Utilities::register_option( array( 'settings' => 'acumen_wwd_visibility', 'type' => 'select', 'sanitize_callback' => 'acumen_sanitize_select', 'label' => esc_html__( 'Visible On', 'acumen' ), 'section' => 'acumen_ss_wwd', 'choices' => Acumen_Customizer_Utilities::section_visibility(), ) ); // Add Edit Shortcut Icon. $wp_customize->selective_refresh->add_partial( 'acumen_wwd_visibility', array( 'selector' => '#wwd-section', ) ); Acumen_Customizer_Utilities::register_option( array( 'type' => 'text', 'sanitize_callback' => 'acumen_text_sanitization', 'settings' => 'acumen_wwd_section_top_subtitle', 'label' => esc_html__( 'Section Top Sub-title', 'acumen' ), 'section' => 'acumen_ss_wwd', 'active_callback' => array( $this, 'is_wwd_visible' ), ) ); Acumen_Customizer_Utilities::register_option( array( 'settings' => 'acumen_wwd_section_title', 'type' => 'text', 'sanitize_callback' => 'acumen_text_sanitization', 'label' => esc_html__( 'Section Title', 'acumen' ), 'section' => 'acumen_ss_wwd', 'active_callback' => array( $this, 'is_wwd_visible' ), ) ); Acumen_Customizer_Utilities::register_option( array( 'settings' => 'acumen_wwd_section_subtitle', 'type' => 'text', 'sanitize_callback' => 'acumen_text_sanitization', 'label' => esc_html__( 'Section Subtitle', 'acumen' ), 'section' => 'acumen_ss_wwd', 'active_callback' => array( $this, 'is_wwd_visible' ), ) ); Acumen_Customizer_Utilities::register_option( array( 'settings' => 'acumen_wwd_number', 'type' => 'number', 'label' => esc_html__( 'Number', 'acumen' ), 'description' => esc_html__( 'Please refresh the customizer page once the number is changed.', 'acumen' ), 'section' => 'acumen_ss_wwd', 'sanitize_callback' => 'absint', 'input_attrs' => array( 'min' => 1, 'max' => 80, 'step' => 1, 'style' => 'width:100px;', ), 'active_callback' => array( $this, 'is_wwd_visible' ), ) ); Acumen_Customizer_Utilities::register_option( array( 'custom_control' => 'Acumen_Simple_Notice_Custom_Control', 'sanitize_callback' => 'sanitize_text_field', 'settings' => 'acumen_wwd_icon_note', 'label' => esc_html__( 'Info', 'acumen' ), /* translators: 1: Link Start html, 2: Link end html. */ 'description' => sprintf( esc_html__( 'If you want camera icon, save "fas fa-camera". For more classes, check %1$sthis%2$s', 'acumen' ), '', '' ), 'section' => 'acumen_ss_wwd', 'active_callback' => array( $this, 'is_wwd_visible' ), ) ); $numbers = acumen_gtm( 'acumen_wwd_number' ); for( $i = 0, $j = 1; $i < $numbers; $i++, $j++ ) { Acumen_Customizer_Utilities::register_option( array( 'custom_control' => 'Acumen_Simple_Notice_Custom_Control', 'sanitize_callback' => 'acumen_text_sanitization', 'settings' => 'acumen_wwd_notice_' . $i, 'label' => esc_html__( 'Item #', 'acumen' ) . $j, 'section' => 'acumen_ss_wwd', 'active_callback' => array( $this, 'is_wwd_visible' ), ) ); Acumen_Customizer_Utilities::register_option( array( 'sanitize_callback' => 'sanitize_text_field', 'settings' => 'acumen_wwd_custom_icon_' . $i, 'label' => esc_html__( 'Icon Class', 'acumen' ), 'section' => 'acumen_ss_wwd', 'active_callback' => array( $this, 'is_wwd_visible' ), ) ); Acumen_Customizer_Utilities::register_option( array( 'custom_control' => 'Acumen_Dropdown_Posts_Custom_Control', 'sanitize_callback' => 'absint', 'settings' => 'acumen_wwd_page_' . $i, 'label' => esc_html__( 'Select Page', 'acumen' ), 'section' => 'acumen_ss_wwd', 'active_callback' => array( $this, 'is_wwd_visible' ), 'input_attrs' => array( 'post_type' => 'page', 'posts_per_page' => -1, 'orderby' => 'name', 'order' => 'ASC', ), ) ); } } /** * WWD visibility active callback. */ public function is_wwd_visible( $control ) { return ( acumen_display_section( $control->manager->get_setting( 'acumen_wwd_visibility' )->value() ) ); } } /** * Initialize class */ $acumen_ss_wwd = new Acumen_WWD_Options();