Last active
November 24, 2015 11:18
-
-
Save mtinra/4da331f98b3554194097 to your computer and use it in GitHub Desktop.
Disable Post Revisions in Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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