Archive

Posts Tagged ‘cmc’

How to Delete Existing WordPress Post Revisions

February 19th, 2010 admin Comments off

To remove all existing post revisions entries from WordPress database Posts table, simply login to MySQL phpMyAdmin. Select the appropriate WordPress database, and then issue the following command:

DELETE FROM wp_posts WHERE post_type = "revision";

it’s recommended to backup the database before performing the deletion SQL statements.

Categories: CMS Tags: , , , ,