/*
* Add define( 'WP_DEVELOPMENT_MODE', 'core' ), or define( 'WP_DEVELOPMENT_MODE', 'plugin' ), or
* define( 'WP_DEVELOPMENT_MODE', 'theme' ), or define( 'WP_DEVELOPMENT_MODE', 'all' ) to wp-config.php
* to signify development mode for WordPress core, a plugin, a theme, or all three types respectively.
*/
if ( !
defined( 'WP_DEVELOPMENT_MODE'
) ) { define( 'WP_DEVELOPMENT_MODE', ''
);
} // Add define( 'WP_DEBUG', true ); to wp-config.php to enable display of notices during development.
if ( !
defined( 'WP_DEBUG'
) ) { if ( wp_get_development_mode() || 'development' ===
wp_get_environment_type() ) { define( 'WP_DEBUG', true
);
} else { define( 'WP_DEBUG', false
);
} } /*
* Add define( 'WP_DEBUG_DISPLAY', null ); to wp-config.php to use the globally configured setting
* for 'display_errors' and not force errors to be displayed. Use false to force 'display_errors' off.
*/
if ( !
defined( 'WP_DEBUG_DISPLAY'
) ) {