WordPress Config

Place to put all WordPress specific configurations.

WordPress 6.3 introduced ‘development mode’ which avoids the theme.json caching.

define( 'WP_DEVELOPMENT_MODE', 'theme' );

use debug logging on local and remote in development

define('WP_DEBUG', true);
define('WP_DEBUG_DISPLAY', true );
define('WP_DEBUG_LOG', '/_log/error.log');