<ul>
<li>Пункт 1</li>
<li>Пункт 2</li>
</ul>
<ul>
<li>Пункт 3</li>
<li>Пункт 4</li>
</ul>
global $post;
$tags = get_the_terms( $post->ID, 'product_cat' );
foreach ( $tags as $tag ) $tags[] = $tag->slug;
if ( in_array( 'cat-name', $tags )) {
dynamic_sidebar( 'cat-name-sidebar' );
}
else {
dynamic_sidebar( 'other-sidebar' );
}
?>