Skip to content

Instantly share code, notes, and snippets.

View adrianocalvitto's full-sized avatar

Adriano Calvitto adrianocalvitto

View GitHub Profile
@adrianocalvitto
adrianocalvitto / wp-cli-export-woo-orders.txt
Last active December 7, 2022 03:33
Export All WooCommerce Orders via WP-CLI in a single .xml file
wp export --post__in=$(wp eval 'foreach( get_posts(array("post_type" => "shop_order", "posts_per_page" => -1, "fields" => "ids")) as $id ) { echo $id. ","; }') --max_file_size=200