Tag archives for custom fields

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

You’ve found the perfect theme for your WordPress installation. It already has most of what you need, except you’d like to include a different sidebar on some of the pages. Or perhaps you would like to have a certain sidebar included based on the category of posts you are displaying. Now there’s an easy way [...]

backtotop