<? $args = array( 'post_type' => 'usluga', 'posts_per_page' => -1, );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();?>
<h2><a href="<?php the_permalink(); ?>"><? the_title();?></a></h2>
<?endwhile;?>
$category_id = 914; // проверяем принадлежность к этой категории
$cats = hml_get_category_gender_line( $category_id );
if ( has_term($cats, 'product_cat', $product_id ) ) {
... ура наш товар принадлежит этой ветке категорий
}
...
// получить дерево потомков категорий (включая родителя), в массиве
function hml_get_category_gender_line( $cat_parent ){
$line = get_term_children( (int) $cat_parent, 'product_cat');
$line[] = $cat_parent;
return $line;
}