WordPress delete all posts WP-CLI

Delete All Posts in WordPress Using WP-CLI

Introduces how to delete all posts in WordPress, how to delete posts bypassing the trash, and how to empty the trash.

Shou Arisaka
1 min read
Nov 2, 2025

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)

Share this article

Shou Arisaka Nov 2, 2025

🔗 Copy Links