*/ function boxwp_recomm_plugin_options($wp_customize) { // Customizer Section: Recommended Plugins $wp_customize->add_section( 'sc_recommended_plugins', array( 'title' => esc_html__( 'Recommended Plugins', 'boxwp' ), 'panel' => 'boxwp_main_options_panel', 'priority' => 880 )); $wp_customize->add_setting( 'boxwp_options[recommended_plugins]', array( 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boxwp_sanitize_recommended_plugins' ) ); $wp_customize->add_control( new BoxWP_Customize_Recommended_Plugins( $wp_customize, 'boxwp_recommended_plugins_control', array( 'label' => esc_html__( 'Recommended Plugins', 'boxwp' ), 'section' => 'sc_recommended_plugins', 'settings' => 'boxwp_options[recommended_plugins]', 'type' => 'tdna-recommended-wpplugins' ) ) ); }