У меня есть 32 категории и 1000 товаров на моем сайте ... но мой клиент хочет добавить категорию Все товары, и в этой категории он хочет показать все товары, поэтому, когда пользователь нажимает на эту категорию, все товары показывают
i have try this like get product category and them get the all prodcut category term_id and then use the
wp_set_object_terms( $product_id, $term_ids, 'product_cat' );
but does not work
this is the code
$product_id = 5558;
$term_ids = [ 130, 12, 18 ];
wp_set_object_terms( $product_id, $term_ids, 'product_cat' );
no error that code is not add that category to this product