Shortcodes make life easier for a blogger. I can easily list subpages, add post meta elements and even query posts using shortcodes. You can do as much in your widgets too, you just need a quick fix to enable shortcodes in your widgets.
To enable shortcode functions in your widgets you can use the code below:
add_filter('widget_text', 'do_shortcode');
Add this code to functions.php in your theme folder. This way you can easily use your theme/plugin based shortcodes on your sidebar. For example if you are using my adsense widget, you could easily add a square ad to your sidebar using:
[adsense type="small-square"]
Or you could list subpages of a page using:
[subpages exceptme="true" childof="253"]
Read more functions.php edits here :
- Add browser classes to body using filters in WordPress
- WP Trick : Display most viewed posts first on search pages
- How to exclude categories and tags from your widgets
- How to display a “Back to parent” link on your blog pages
- How to display latest tweet on your site
- How to enable comments for all posts in wordpress
- How to use shortcodes in your theme files
- How to display site logo on facebook share if no post thumbnail exists
- Adding javascript to your theme using wp_enqueue_script
- How to change default embed size using filters
- Enabling shortcodes in widgets
- How to disable wordpress admin bar
- How to change HTML editor font in WordPress
- How to change dropdown menu depth and order using filters
- How to hide members only content in your posts
- Advanced adsense targeting for wordpress Pt.2

thanks for creating this, it’s working great however, i can’t seem to get it to work on my blog page menu:
I have it set up to show all artists and all discography, as seen here: http://www.fatelessmusic.com/newsite/?page_id=31
the artists and discography are created on actual pages.
I have included the widget on the menu for the posts pages. They are set up exactly as they are for pages, but for some reason they are not showing up on the menu for posts seen here:
http://www.fatelessmusic.com/newsite/?cat=13
am i missing something?
thanks
Lynn
Which shortcode are you using?
Please put double “[" and "]” to wrap it in your reply.