Daily Tip: Select Sidebar on a Post-by-Post Basis Using Custom Fields
April 7, 2010
If you’ve every wanted to use different sidebars for different post categories or even individual posts, here’s a quick and easy way to put a little more customization into your templates. Open your single.php file and locate the sidebar:
< ?php get_sidebar(); ?>
Replace it with this:
<?php $sidebar = get_post_meta($post->ID, "sidebar", true); get_sidebar($sidebar); ?>
Now when you want to use a different sidebar, you’ll simply create a custom field called “sidebar.” Give it the value of the custom sidebar templates you’ve created- for example: sidebar-news.php, sidebar-full.php, sidebar-photos.php. If you want to use your news sidebar, give the custom field the name “sidebar” and the value “sidebar-news”.
Featured Images Widget
January 22, 2008
Featured Images automatically features a thumbnail (or thumbnails) from your latest posts on your sidebar.
Featured Video Plugin/Widget
January 15, 2008
Featured Video automatically features the latest video you include in a post in your sidebar.


