Advertisement
designbymerovingi

Enabling Debugging in WordPress with logging

Jul 26th, 2017
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. Replace:
  2. define( 'WP_DEBUG', false );
  3.  
  4.  
  5. With:
  6. define( 'WP_DEBUG', true );
  7. define( 'WP_DEBUG_LOG', true );
  8. define( 'WP_DEBUG_DISPLAY', false );
  9. @ini_set( 'display_errors', 0 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement