Skip to content

Instantly share code, notes, and snippets.

@Garconis
Created March 8, 2019 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Garconis/849f8b620a3adb1837ad4304289e94c5 to your computer and use it in GitHub Desktop.
Save Garconis/849f8b620a3adb1837ad4304289e94c5 to your computer and use it in GitHub Desktop.
WordPress | debug PHP by enabling WP_DEBUG log file in WP Config
<?php // remove this line
// add this to your wp-config.php file, before /* That's all, stop editing! Happy blogging. */
define( 'WP_DEBUG', true );
if (WP_DEBUG) {
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors',0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment