Шаблон категории по условию #категория
<?php
$post = $wp_query->post;
if ( in_category( '7' ) || post_is_in_descendant_category( '7' ) ) {
include(TEMPLATEPATH.'/templates-category/category-name1.php');
}
elseif (in_category('8','9','10')) {
include(TEMPLATEPATH.'/templates-category/category-name2.php');
}
else {
include(TEMPLATEPATH.'/templates-category/category-default.php');
}
?>