Answers for "wordpress post revisions config"

PHP
0

wp revisions config

// on wp-config.php -->
define( 'WP_POST_REVISIONS', 5 ); // Save max 5 revisions
define('AUTOSAVE_INTERVAL', 120 ); // Save revision automatically after 2 minutes (default 60 sec.)
Posted by: Guest on May-25-2020
0

wordpress post revisions config

// Inside wp-config.php -> LIMIT POST REVISIONS to 8
define( 'WP_POST_REVISIONS', 8 );
Posted by: Guest on January-25-2021

Browse Popular Code Answers by Language