How do I unset category from a product in wordpress by code
To remove all category from a WooCommerce product, you can use the wp_set_object_terms() function. Here is an example of how you can use wp_set_object_terms() to remove categories from a product: // Set the product’s categories to an empty array $categories = array(); wp_set_object_terms( $product->ID, $categories, ‘product_cat’ ); If you want to remove a specific category, … Read more