Skip to content

Instantly share code, notes, and snippets.

@sachinkiranti
Last active February 20, 2018 18:57
Show Gist options
  • Save sachinkiranti/9e2d2915488e2f12671d1f75cbe2b8d6 to your computer and use it in GitHub Desktop.
Save sachinkiranti/9e2d2915488e2f12671d1f75cbe2b8d6 to your computer and use it in GitHub Desktop.
Turn on error reporting in wordpress ...
<?php
//https://raisachin.wordpress.com/2018/01/30/how-to-turn-on-error-reporting-in-wordpress/
define('WP_DEBUG', true); // update false to true
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