Skip to content

Instantly share code, notes, and snippets.

@emilstahl
Created August 19, 2015 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emilstahl/e93b03f47f1d4403ae98 to your computer and use it in GitHub Desktop.
Save emilstahl/e93b03f47f1d4403ae98 to your computer and use it in GitHub Desktop.
wp-config.php essentials
/* WordPress Cache */
define( 'WP_CACHE', true );
/* Compression */
define( 'COMPRESS_CSS', true );
define( 'COMPRESS_SCRIPTS', true );
define( 'CONCATENATE_SCRIPTS', true );
define( 'ENFORCE_GZIP', true );
/* Memory limit */
define('WP_MEMORY_LIMIT', '128M');
/* Debug */
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_LOG', false );
define( 'WP_DEBUG_DISPLAY', false );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment