You are viewing an old revision of this post, from September 2, 2015 @ 14:26:48. See below for differences between this version and the current revision.

Delete Posts Revisions from Your Database

Delete Batches of Post Revisions WordPress has a lot of good features and one of them is Post Revisions. This was included in WordPress 2.6, even though this is a good feature, it can cause some problems. One of them is increase the size of your database. Depending on how long it takes you to write a post, you might have as many as fifty post revisions. Now you can manually delete them, or you can run a simple query which we will show you in this post and get rid of all these useless revisions. First thing you need to do is login to your phpMyAdmin and select your WordPress Database. Click on the SQL Button and enter the following query:
DELETE FROM wp_posts WHERE post_type = "revision";
In this code basically we looked up a table wp_posts and removed every post that had a post_type revision associated with it. Now depending on the size of your database, this may save you a lot of space.

Revisions

  • September 2, 2015 @ 14:26:48 [Current Revision] by PeterLugg
  • September 2, 2015 @ 14:26:48 by PeterLugg

Revision Differences

There are no differences between the September 2, 2015 @ 14:26:48 revision and the current revision. (Maybe only post meta information was changed.)

Tags: , , ,

No comments yet.

Leave a Reply