Skip to content

Instantly share code, notes, and snippets.

@imath
Created March 13, 2013 18:21
Show Gist options
  • Save imath/5154740 to your computer and use it in GitHub Desktop.
Save imath/5154740 to your computer and use it in GitHub Desktop.
Quick tip to Neutralize WordPress post revisions without modifying wp-config.php
<?php
function no_revions_for_posts() {
// see https://twitter.com/pixenjoy/status/311512790760308736
remove_post_type_support('post', 'revisions');
}
add_action( 'init', 'no_revions_for_posts', 99 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment