Skip to content

Instantly share code, notes, and snippets.

@misfist
Last active February 14, 2018 19:06
Show Gist options
  • Save misfist/c87b4effa32e5a6f8248dd13c9db434b to your computer and use it in GitHub Desktop.
Save misfist/c87b4effa32e5a6f8248dd13c9db434b to your computer and use it in GitHub Desktop.
Function to limit the number of revisions saved
<?php
// Alternative to defining in wp-config.php `define( 'WP_POST_REVISIONS', 3 );`
add_filter( 'wp_revisions_to_keep', function() {
return 10;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment