How does one reduce the number of stored revision (e.g. 5 max) for post types that support revisions?

4 s
4

add to your wp-config.php file the following line:

// set max post revisions    
define('WP_POST_REVISIONS', 5);

source: http://codex.wordpress.org/Editing_wp-config.php#Post_Revisions

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *