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); ?> [...]




