How to Disable Post Revision at Wordpress
June 10, 2009
Post revision is wordpress feature that allow you to track revision you have made to your post. But, many WordPress 2.6 or newer version users who feel that post revisions feature is not useful. It makes database size bigger and wastes your disk space.
You can turn off and disable automatic post revisions all versions saving feature in WordPress 2.6 or later version by add the following line of code to wp-config.php, file located home directory of WordPress blog.
define(‘WP_POST_REVISIONS’, false);
When it set, WordPress will not store any revisions anymore. You can also use wordpress plugin to do it



