'product', 'posts_per_page' => -1, 'fields' => 'ids', 'tax_query' => array( array( 'taxonomy' => 'product_cat', 'field' => 'term_id', 'terms' => $category_ids, 'operator' => 'IN' ) ) )); /** Set our shipping class on each product */ foreach ($products->posts as $pid) { wp_set_object_terms($pid, $shipping_class_slug, 'product_shipping_class'); } /** reset the query */ wp_reset_query();