WordPress – How to disable post revisions

By default, posts and pages in wordpress save previous versions when updates are saved.

WordPress-LimitRevisions1

This can be helpful if you need to refer to a previous version, but also creates additional overhead on your WordPress installation by storing additional records in the database for each update.

The steps below detail how to disable the revisions feature in WordPress. See WordPress – How to limit post revisions if you want to limit the revisions instead.

The process requires access to the WordPress files on the web server, specifically wp-config.php.

  1. Using FTP or your websites cPanel access, open the wp-config.php file in the root of your WordPress installation
  2. At the top of the file, below the <?php add the following code
  3. define('WP_POST_REVISIONS', false);
  4. WordPress-LimitRevisions3
  5. And save the changes.
  6. The revisions option is now no longer available.
  7. WordPress-LimitRevisions4
  8. If you have an existing post with revisions the next time the post is updated the revisions will be removed from the database.