products
// WP_Query arguments $args = array( 'post_type' => array( 'product' ), 'post_status' => array( 'publish' ), 'nopaging' => false, 'paged' => '1', 'posts_per_page' => '16', 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'product_cat', 'terms' => '1129', 'field' => 'term_id', 'include_children' => true, ), ), 'meta_query' => array( 'relation' => 'AND', array( 'key' => '_price', 'compare' => '>', 'type' => 'DATETIME', ), ), ); // The Query $query = new WP_Query( $args );