How can I get List Category Posts to work as a widget? [closed]

This plugin works just fine in a post/page, but I need it to appear in a Text widget. Anyway to make it work in this location?

2 Answers
2

to enable shortcode in textwidgets, add this to functions.php of your theme:

add_filter('widget_text', 'do_shortcode');  

Leave a Comment