Last active
May 14, 2018 16:18
-
-
Save VirtuBox/a63333ead940f2f93ea3a310d33e0830 to your computer and use it in GitHub Desktop.
Custom end of wp-config.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Specify maximum number of Revisions. */ | |
define( 'WP_POST_REVISIONS', '10' ); | |
/* Trash Days. */ | |
define( 'EMPTY_TRASH_DAYS', '15' ); | |
/* PHP Memory */ | |
define( 'WP_MEMORY_LIMIT', '128M' ); | |
define( 'WP_MAX_MEMORY_LIMIT', '256M' ); | |
define('WP_DEBUG', false); | |
/* Compression */ | |
define( 'CONCATENATE_SCRIPTS', false ); | |
/* CRON */ | |
define( 'DISABLE_WP_CRON', 'true' ); | |
define( 'ALTERNATE_WP_CRON', 'true' ); | |
define( 'WP_CRON_LOCK_TIMEOUT', 60 ); | |
/* Updates */ | |
define( 'WP_AUTO_UPDATE_CORE', true ); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment