Different Sidebar For Category Archives Trick
Posted on October 19th, 2009 in Wordpress | No Comments »
Here is a little tip for creating a standard sidebar for category archives, different to the homepage sidebar. Searching on google for ages trying to work this out, but didn’t realise how easy it would be.
In the category template, delete this:
<?php get_sidebar();?>
replace with:
<?php include(TEMPLATEPATH . '/sidebar2.php');?>
Sidebar2.php being your alternative sidebar.
This is a lot quicker than using multiple if and else ifelse statements. dur dur
