How can I bulk delete media and attachments using WP-CLI?

From the WP-CLI documentation about wp post delete:

wp post delete --force $(wp post list --post_type="attachment" --format=ids)

See wp post list for additional information.

Leave a Comment