Last active
June 8, 2021 14:24
-
-
Save IlanVivanco/1776d063efc8c435314469e340dfeac0 to your computer and use it in GitHub Desktop.
WP debug snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define( 'WP_DEBUG', true ); | |
define( 'WP_DEBUG_LOG', true ); | |
define( 'WP_DEBUG_DISPLAY', false ); | |
// Logs the nmae of the function | |
error_log( '>>> IN ' . __FUNCTION__ ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment