Skip to content

Instantly share code, notes, and snippets.

@lukecav
Last active November 13, 2023 08:13
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save lukecav/888537e8d2e1ddbdc71ef70ba4cc5832 to your computer and use it in GitHub Desktop.
Save lukecav/888537e8d2e1ddbdc71ef70ba4cc5832 to your computer and use it in GitHub Desktop.
Bulk update all product posts in WooCommerce with a post status of publish or draft using a WP-CLI command
# Bulk update all product posts with a post status of publish to draft
wp post list --field=ID --post_type=product --posts_per_page=500 --post_status=publish | xargs wp post update --post_status=draft
# Bulk update all product posts with a post status of draft to publish
wp post list --field=ID --post_type=product --posts_per_page=500 --post_status=draft | xargs wp post update --post_status=publish