wordpress post revisions config

Solutions on MaxInterview for wordpress post revisions config by the best coders in the world

showing results for - "wordpress post revisions config"
Noha
26 Feb 2017
1// on wp-config.php -->
2define( 'WP_POST_REVISIONS', 5 ); // Save max 5 revisions
3define('AUTOSAVE_INTERVAL', 120 ); // Save revision automatically after 2 minutes (default 60 sec.)
Helena
08 Jan 2018
1// Inside wp-config.php -> LIMIT POST REVISIONS to 8
2define( 'WP_POST_REVISIONS', 8 );