Changeset 45203 for trunk/src/wp-includes/default-constants.php
- Timestamp:
- 04/15/2019 10:09:31 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/default-constants.php
r45104 r45203 73 73 } 74 74 75 // Add define( 'WP_DEBUG', true); to wp-config.php to enable display of notices during development.75 // Add define( 'WP_DEBUG', true ); to wp-config.php to enable display of notices during development. 76 76 if ( ! defined( 'WP_DEBUG' ) ) { 77 77 define( 'WP_DEBUG', false ); 78 78 } 79 79 80 // Add define( 'WP_DEBUG_DISPLAY', null); to wp-config.php use the globally configured setting for80 // Add define( 'WP_DEBUG_DISPLAY', null ); to wp-config.php use the globally configured setting for 81 81 // display_errors and not force errors to be displayed. Use false to force display_errors off. 82 82 if ( ! defined( 'WP_DEBUG_DISPLAY' ) ) { … … 84 84 } 85 85 86 // Add define( 'WP_DEBUG_LOG', true); to enable error logging to wp-content/debug.log.86 // Add define( 'WP_DEBUG_LOG', true ); to enable error logging to wp-content/debug.log. 87 87 if ( ! defined( 'WP_DEBUG_LOG' ) ) { 88 88 define( 'WP_DEBUG_LOG', false ); … … 93 93 } 94 94 95 // Add define( 'SCRIPT_DEBUG', true); to wp-config.php to enable loading of non-minified,95 // Add define( 'SCRIPT_DEBUG', true ); to wp-config.php to enable loading of non-minified, 96 96 // non-concatenated scripts and stylesheets. 97 97 if ( ! defined( 'SCRIPT_DEBUG' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.