Woocommerce-delete-all-orders icon indicating copy to clipboard operation
Woocommerce-delete-all-orders copied to clipboard

Delete all your Woocommerce orders with this script.

Delete all Woocommerce orders

Delete all your Woocommerce orders with this script. Use at own risk

I just want the SQL-queries

Here you go!

DELETE FROM wp_woocommerce_order_itemmeta;
DELETE FROM wp_woocommerce_order_items;
DELETE FROM wp_comments WHERE comment_type = 'order_note';
DELETE FROM wp_postmeta WHERE post_id IN ( SELECT ID FROM wp_posts WHERE post_type = 'shop_order' );
DELETE FROM wp_posts WHERE post_type = 'shop_order';