Anthony2511
1/7/2020 - 11:17 AM

Post query with custom taxonomy

<?php 
$category = get_queried_object()->slug; // permet de récupérer la catégorie

$myposts = get_posts([
		'showposts' => -1,
		'post_type' => 'product',
		'orderby' => 'date',
	 'order' => 'DESC',
	  'tax_query' => [
        [
          'taxonomy' => 'gamme-taxonomies',
          'field'    => 'slug',
          'terms'    => $category
        ]
      ]
	]
); 
?>