Wordpress debugen aktivieren
Diese sehr nützliche Feature ist vor allem dann notwendig, wenn z. B. nach einen PHP Update bei dem Hoster plötzlich die Webseite gar nicht mehr zeigt und nur weiß bleibt.
wp-config.php
...
define('WP_DEBUG', false);
/* That's all, stop editing! Happy blogging. */
...
...
define('WP_DEBUG', true);
/* That's all, stop editing! Happy blogging. */
...
wp-config.php
...
define('WP_DEBUG', false);
/* That's all, stop editing! Happy blogging. */
...
...
define('WP_DEBUG', true);
/* That's all, stop editing! Happy blogging. */
...
Kommentare