Skip to content

Instantly share code, notes, and snippets.

@cyancey76
Created March 11, 2020 16:41
Show Gist options
  • Save cyancey76/ff6f98bf83cd7593204fd1e0b927b264 to your computer and use it in GitHub Desktop.
Save cyancey76/ff6f98bf83cd7593204fd1e0b927b264 to your computer and use it in GitHub Desktop.
#Wordpress #function - disable and remove post revisions
wp post delete $(wp post list --post_type='revision' --format=ids)
DELETE FROM wp_posts WHERE post_type = "revision";
define('WP_POST_REVISIONS', false);
define('AUTOSAVE_INTERVAL', 300 ); // seconds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment