Skip to main content
Login Join
Snippet · PHP

Specify The Number Of Post Revisions

Shared by Meet Makadia · April 29, 2026

16 views
Back to Snippets

If you want to specify a maximum number of revisions, change false to an integer/number (e.g., 3 or 5).

//You can specify the number of post revisions in WordPress by adding this line of code to your wp-config.php.
define('WP_POST_REVISIONS', 3);
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments