*/ function boldwp_other_options($wp_customize) { $wp_customize->add_section( 'boldwp_section_other_options', array( 'title' => esc_html__( 'Other Options', 'boldwp' ), 'panel' => 'boldwp_main_options_panel', 'priority' => 600 ) ); $wp_customize->add_setting( 'boldwp_options[enable_widgets_block_editor]', array( 'default' => false, 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldwp_sanitize_checkbox', ) ); $wp_customize->add_control( 'boldwp_enable_widgets_block_editor_control', array( 'label' => esc_html__( 'Enable Gutenberg Widget Block Editor', 'boldwp' ), 'section' => 'boldwp_section_other_options', 'settings' => 'boldwp_options[enable_widgets_block_editor]', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'boldwp_options[disable_loading_animation]', array( 'default' => false, 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldwp_sanitize_checkbox', ) ); $wp_customize->add_control( 'boldwp_disable_loading_animation_control', array( 'label' => esc_html__( 'Disable Site Loading Animation', 'boldwp' ), 'section' => 'boldwp_section_other_options', 'settings' => 'boldwp_options[disable_loading_animation]', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'boldwp_options[disable_fitvids]', array( 'default' => false, 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldwp_sanitize_checkbox', ) ); $wp_customize->add_control( 'boldwp_disable_fitvids_control', array( 'label' => esc_html__( 'Disable FitVids.JS', 'boldwp' ), 'description' => esc_html__( 'You can disable fitvids.js script if you are not using videos on your website or if you do not want fluid width videos in your post content.', 'boldwp' ), 'section' => 'boldwp_section_other_options', 'settings' => 'boldwp_options[disable_fitvids]', 'type' => 'checkbox', ) ); }