*/ function boldwp_recomm_plugin_options($wp_customize) { // Customizer Section: Recommended Plugins $wp_customize->add_section( 'boldwp_section_recommended_plugins', array( 'title' => esc_html__( 'Recommended Plugins', 'boldwp' ), 'panel' => 'boldwp_main_options_panel', 'priority' => 620 )); $wp_customize->add_setting( 'boldwp_options[recommended_plugins]', array( 'type' => 'option', 'capability' => 'install_plugins', 'sanitize_callback' => '__return_false' ) ); $wp_customize->add_control( new BoldWP_Customize_Recommended_Plugins( $wp_customize, 'boldwp_recommended_plugins_control', array( 'label' => esc_html__( 'Recommended Plugins', 'boldwp' ), 'section' => 'boldwp_section_recommended_plugins', 'settings' => 'boldwp_options[recommended_plugins]', 'type' => 'themesdna-recommended-wpplugins', 'capability' => 'install_plugins' ) ) ); }