I would like to know how to bulk delete posts from a specific category using the WP-CLI, any tip?

2 Answers
2

This should delete all posts in your category:

wp post delete $(wp post list --cat=your_category_ID --format=ids)

Or directly:

wp db query [<your_sql_query>]

For more info:

wp post delete --help
wp post list --help
wp db query --help

Leave a Reply

Your email address will not be published. Required fields are marked *