WPDailyBits

Mastering WordPress, bits by bits

Main menu

Skip to primary content
Skip to secondary content
  • Home
  • About WP Daily Bits
  • Contact Us
  • Search Result

Tag Archives: snippets

Snippet: How to Enable Shortcode in Widget

Posted on December 17, 2010 by Damien

The best way to implement php code in the widget is via the use of shortcode. The following line of code is all you need to enable the shortcode for widget function.

In your functions.php file, paste the following:

add_filter('widget_text', 'do_shortcode');

That’s it.

Posted in Snippets | Tagged shortcode, snippets
Proudly powered by WordPress