Skip to content

Instantly share code, notes, and snippets.

@VirtuBox
Last active May 14, 2018 16:18
Show Gist options
  • Save VirtuBox/a63333ead940f2f93ea3a310d33e0830 to your computer and use it in GitHub Desktop.
Save VirtuBox/a63333ead940f2f93ea3a310d33e0830 to your computer and use it in GitHub Desktop.
Custom end of wp-config.php
/* 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