if ( is_tax( $taxonomy, $term1 ) || has_term( $term1, $taxonomy ) ) {
dynamic_sidebar( 'sidebar1' );
} elseif ( is_tax( $taxonomy, $term2 ) || has_term( $term2, $taxonomy ) ) {
dynamic_sidebar( 'sidebar2' );
} else {
dynamic_sidebar( 'sidebar3' );
}
<?php
$a = the_category_ID();
if ($a == 1) {
//меню
}
?>