Skip to content

Instantly share code, notes, and snippets.

@michaeloeser
Created January 15, 2013 13:37
Show Gist options
  • Save michaeloeser/4538692 to your computer and use it in GitHub Desktop.
Save michaeloeser/4538692 to your computer and use it in GitHub Desktop.
Limit Post Revisions
<?php
// Maximum 5 revisions
define('WP_POST_REVISIONS', 5);
// Disable revisions
define('WP_POST_REVISIONS', false);
?>
@michaeloeser
Copy link
Author

I love the autosave function but I do end up with loads of post revisions. Use this to limit the number.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment