Как получить id категории товара, которая отображается на странице category-product_cat.php?
Или проще, нужно получить $term_id.
$term_id = $term->term_id;
$args = [
'post_type' => 'product',
'tax_query' => [
[
'taxonomy' => 'product_cat',
'field' => 'name',
'terms' => $term_id,
],
],
'posts_per_page' => - 1,
];
$products = new WP_Query( $args ); ?>