Report How can I disable post revisions in WordPress? in Web Posted January 19, 2018 Open wp-config.php in and paste this code //disable WP Post Revisions define('AUTOSAVE_INTERVAL', 300); // seconds define('WP_POST_REVISIONS', false); Insert this code above ‘ABSPATH’ You can see this as reference https://www.wpblog.com/disable-limit-wordpress-post-revisions/
How can I disable post revisions in WordPress?
in Web
Posted
Open wp-config.php in and paste this code
//disable WP Post Revisions define('AUTOSAVE_INTERVAL', 300); // seconds define('WP_POST_REVISIONS', false);