<?php
$arg =
array (
'post_type' => 'product',
'post_status' => 'publish',
'posts_per_page' => 32,
'paged' => 1,
'orderby' => 'relevance',
'order' => 'DESC',
'tax_query' =>
array (
'product_cat' =>
array (
'taxonomy' => 'product_cat',
'field' => 'term_id',
'terms' =>
array (
0 => 2800,
),
),
),
);
?>