Skip to content

Instantly share code, notes, and snippets.

@mspalex
Last active February 10, 2016 17:22
Show Gist options
  • Save mspalex/791aaf46d94eb7ab328d to your computer and use it in GitHub Desktop.
Save mspalex/791aaf46d94eb7ab328d to your computer and use it in GitHub Desktop.
Wordpress - Limit or Remove completely Post Revisions
<?php
// set max post revisions
define(, 5);
//(or)
/** Disable Revision once for all*/
define('WP_POST_REVISIONS', false );
//(or)
/** Disable Revision once for all*/
define('WP_POST_REVISIONS', 0);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment