Created
April 18, 2020 10:08
-
-
Save dvdmierden/352699ac6de217de37d4e1adeb912feb to your computer and use it in GitHub Desktop.
Delete all products from woocommerce
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELETE FROM wp_term_relationships WHERE object_id IN | |
(SELECT ID FROM wp_posts WHERE post_type IN ('product','product_variation')); | |
DELETE FROM wp_postmeta WHERE post_id IN (SELECT ID FROM wp_posts WHERE post_type IN | |
('product','product_variation')); | |
DELETE FROM wp_posts WHERE post_type IN ('product','product_variation'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment