TJ Singleton

Software Engineer, Baptist Preacher

How to Use Shortcodes in Widgets

Want to use shortcodes in your text widget? Just add this snippet to your functions file.

1
2
3
4
5
6
7
8
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;
}