If you have run a Wordpress blog for any length of time, you should know how large the SQL database can get. This is largely due to the "Post Revisions", which get auto-saved. If you edit a post a few times, a huge list of revisions gets saved to the database. You can see these at the bottom of the post editing page. This post has easy methods to disable and delete the post revisions, which are automatically cached by Wordpress. If you don’t use or need the post revisions which Worpdress has already saved for you, then you can delete them all by using the SQL query below: DELETE FROM wp_posts WHERE post_type='revision'; PHP: You can also disable it from executing to start with by opening wp-config.php in your blog’s home directory. Add these lines under "define(’DB_COLLATE’, â€);" define ('WP_POST_REVISIONS', 0); define('AUTOSAVE_INTERVAL', 600); PHP: There is also a great Wordpress Plug-in called WP-CMS Post Control, which gives you more control over how posts are edited. This great Wordpress plugin will allow you to: Force standard browser upload instead of Flash upload Turn off the revisions feature Turn off the auto save feature Create a collapsable message panel that appears below the write panel Control which options are shown on the post page I prefer to use the manual method, as too many plug-ins for Wordpress can cause problems. I don’t know anyone that has found the post revisions that Wordpress saves, usefull. Maybe in a future edition (v2.8 hopefully), they will include an option to disable from the admin control panel. But until then thousands of blog owners will have to do it manually or use a plugin!