Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Queery produit Euro ceramic

// WP_Query arguments
$args = array(
	'post_type'              => array( 'product_variation' ),
	'post_status'            => array( 'publish' ),
	'nopaging'               => true,
	'posts_per_page'         => '-1',
	'order'                  => 'ASC',
	'orderby'                => 'parent',
	'tax_query'              => array(
		array(
			'taxonomy'         => 'product_cat',
			'terms'            => 'carrelage',
			'field'            => 'slug',
		),
	),
);

// The Query
$products = new WP_Query( $args );