TJ Singleton Software Engineer, Baptist Preacher

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;
}
Comments (1) Trackbacks (0)

Leave a comment


No trackbacks yet.