How to delete posts bypassing the trash and delete all posts using wp-cli.
Delete a post
Put the post ID in “ID”.
wp post delete ID
Delete a post bypassing the trash
wp post delete ID —force
Delete all posts
wp post delete $(wp post list —post_type=‘post’ —format=ids)
Delete all pages
wp post delete $(wp post list —post_type=‘page’ —format=ids)
Empty the trash
wp post delete $(wp post list —post_status=trash —format=ids)