Cos'è la Modalità Sviluppatore in WordPress, e come faccio a controllare se è spenta o accesa?
Grazie per la richiesta di risposta.
Se intendi la Modalità Manutenzione, questo è lo stato quando il tuo WordPress viene aggiornato/aggiornato.
Puoi attivarla manualmente creando il file .maintenance nella tua directory di WordPress.
Se intendi la Modalità Debugging, questo è lo stato quando stai mostrando o registrando tutti gli errori.
Qui puoi trovare maggiori informazioni: WP DEBUG " WordPress Codex
WP_DEBUG è una costante PHP (una variabile globale permanente) che può essere utilizzata per attivare la modalità "debug" in tutto WordPress. Si presume che sia false per impostazione predefinita e di solito è impostata a true nel file wp-config.php sulle copie di sviluppo di WordPress.
Per informazioni su altri strumenti di debug incorporati in WordPress vedi Debugging in WordPress
Uso
Abilita il debug.
- define( 'WP_DEBUG', true );
Disable debugging
- define( 'WP_DEBUG', false );
NOTE: The
true
and
false
values in the example are not set in apostrophes (') because they are boolean values. If you set WP_DEBUG to 'false' that will be interpreted as true because it is a string rather than a boolean.
WP_DEBUG_LOG and WP_DEBUG_DISPLAY
WP_DEBUG_LOG and WP_DEBUG_DISPLAY are additional PHP constants that extend WP_DEBUG, and may also be used to debug WordPress.
WP_DEBUG_LOG
WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).
- define( 'WP_DEBUG_LOG', true );
WP_DEBUG_DISPLAY
WP_DEBUG_DISPLAY is another companion to WP_DEBUG that controls whether debug messages are shown inside the HTML of pages or not. The default is 'true' which shows errors and warnings as they are generated. Setting this to false will hide all errors. This should be used in conjunction with WP_DEBUG_LOG so that errors can be reviewed later.
- define( 'WP_DEBUG_DISPLAY', false );
I hope I helped!