/* Limit Post Revisions */
define( 'WP_POST_REVISIONS', 5 );
/* WordPress also autosaves posts, pages and custom post types every minute. This interval can be lengthened */
define( 'AUTOSAVE_INTERVAL', 300 );
/* WordPress will also store deleted posts in the trash for 30 days before it clears them out. This interval can be shortened */
define( 'EMPTY_TRASH_DAYS', 3 );
/* Limit Post Revisions */
define('DISALLOW_FILE_EDIT', true);
/* To enforce a secure, encrypted connection between you and the server when logging into and administering your site */
define('FORCE_SSL_ADMIN', true);
/* Change this to true to enable the display of notices during development */
define('WP_DEBUG', false);