Skip to content

Instantly share code, notes, and snippets.

@kosinix
Created August 20, 2014 00:04
Show Gist options
  • Select an option

  • Save kosinix/7d8f19352782ff598e1f to your computer and use it in GitHub Desktop.

Select an option

Save kosinix/7d8f19352782ff598e1f to your computer and use it in GitHub Desktop.
Disable Post Revision and Delay Autosave in WP
wp-config.php:
define('AUTOSAVE_INTERVAL', 300 ); // seconds
define('WP_POST_REVISIONS', false );
SQL:
DELETE FROM wp_posts WHERE post_type = "revision";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment