diff options
Diffstat (limited to 'wp-inst/wp-settings.php')
-rw-r--r-- | wp-inst/wp-settings.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/wp-inst/wp-settings.php b/wp-inst/wp-settings.php index 319be00..9e9705d 100644 --- a/wp-inst/wp-settings.php +++ b/wp-inst/wp-settings.php @@ -216,9 +216,8 @@ if ( file_exists(ABSPATH . 'wp-content/object-cache.php') ) else require (ABSPATH . WPINC . '/cache.php'); -// For now, disable persistent caching by default. To enable, comment out -// the following line. -//define('DISABLE_CACHE', true); +// To disable persistant caching, add the below line to your wp-config.php file, uncommented of course. +// define('DISABLE_CACHE', true); wp_cache_init(); |