I know that I can use the following filters to enable processing of shortcodes in Text Widgets:
add_filter( 'widget_text', 'shortcode_unautop');
add_filter( 'widget_text', 'do_shortcode');
How can I only whitelist a few specific shortcodes for processing, but not just process every shortcode?
Or little bit simplier.
Taken from original do_shortcode function.