Set a Limit on the Number of Post Revisions

Set the limiting post revisions to reduce Database size.

// NAV: Set a Limit on the Number of Post Revisions
add_filter( 'wp_revisions_to_keep', function( $limit ) {
// Limit to the last 10 revisions. Change 10 to whatever limit you want.
return 10;
} );