here is the commonly recommended sql command for removing posts revisions and cleaning up the wp database:

DELETE a,b,c
FROM `wp_posts` a
LEFT JOIN `wp_term_relationships` b ON (a.ID = b.object_id)
LEFT JOIN `wp_postmeta` c ON (a.ID = c.post_id)
WHERE a.post_type="revision";

how can i modify it to keep let’s say the last 3 revisions ?

2 Answers
2

You can prevent more than three revisions from being saved to the database in the future by adding this line to your wp-config.php file:

define( 'WP_POST_REVISIONS', 3 );

That line should limit new posts to three revisions, but it won’t go through your database and clean it up.

The SQL snippet that you found for deleting old revisions from the WordPress database has problems, which you can read about in this thread on WordPress.org. The thread outlines the problems, and offers alternatives. The thread also reviews some plugins that will do this for you.

Leave a Reply

Your email address will not be published. Required fields are marked *