Skip to content

Instantly share code, notes, and snippets.

@adrianocalvitto
Last active December 7, 2022 03:33
Show Gist options
  • Save adrianocalvitto/18ce0011abccba1f622d6b7bb362549f to your computer and use it in GitHub Desktop.
Save adrianocalvitto/18ce0011abccba1f622d6b7bb362549f to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment