Skip to content

Instantly share code, notes, and snippets.

@mtinra
Last active November 24, 2015 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mtinra/4da331f98b3554194097 to your computer and use it in GitHub Desktop.
Save mtinra/4da331f98b3554194097 to your computer and use it in GitHub Desktop.
Disable Post Revisions in Wordpress
<?php
/** Limit the number of post revisions */
define( 'WP_POST_REVISIONS', 5 );
/** Completely Disable Post Revisions */
define('WP_POST_REVISIONS', false );
/** Set Autosave Interval to 1 hour */
define('AUTOSAVE_INTERVAL', 3600 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment