我想删除WooCommerce中产品的标签
function prefix_show_is_products() { $products = wc_get_products(array( 'tag' => array('weekly') )); // CODE TO REMOVE 'weekly' from the products }
谢谢你的帮助!
ru9i0ody1#
您应该使用https://developer.wordpress.org/reference/functions/wp_remove_object_terms/
wp_remove_object_terms($product->get_id(), 'weekly', 'product_tag');
1条答案
按热度按时间ru9i0ody1#
您应该使用https://developer.wordpress.org/reference/functions/wp_remove_object_terms/