I figured out a cool trick this evening that I thought I would share. Let’s say you have a shortcode that you would like to display inside of a wordpress text widget area, just locate your theme directory and edit your functions.php file to include the following:
add_filter( 'widget_text', 'shortcode_unautop'); add_filter( 'widget_text', 'do_shortcode');
Questions or Comments?