9Apr/101
How to use shortcodes in widgets
Want to use shortcodes in your text widget? Just add this snippet to your functions file.
add_filter('widget_text', 'shortcode_widgets'); function shortcode_widgets($widget_text) { ob_start(); do_shortcode($widget_text); $captured_content = ob_get_contents(); ob_end_clean(); return $captured_content; }

May 7th, 2010 - 11:31
Thank you for the code.