WordPress: Shortcodes in Text Widgets
Have you ever had a need to apply a shortcode inside a widget? Just add the following into your functions.php file within the theme, be sure to place this code inside your PHP code <?php and ?>:
1 2 |
/* Add Widget Shortcode Functionality */ add_filter('widget_text', 'do_shortcode'); |
...
Recent Comments