I am looking at having a custom sidebar per page. I searched and found how to do it per category at http://wordpress.org/support/topic/157451?replies=14
<?php
if (is_category('80')) {
include(TEMPLATEPATH . '/sidebar80.php');
} elseif ( (is_category('81')) {
include(TEMPLATEPATH . '/sidebar81.php');
} else {
include(TEMPLATEPATH . '/sidebar.php');
}
?>
but I am not sure which tag and where I should do a similar thing if I want custom sidebars for other pages, like the 'About' page (page_id 2 for example)
Any help is appreciated, thanx :)