Last active
May 20, 2016 04:12
-
-
Save mayurah/120ead8f1b82c40d94f022e3b33617c9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
// DEBUG | |
define('WP_DEBUG', true); | |
define('WP_DEBUG_LOG', true); | |
define('WP_DEBUG_DISPLAY', true); | |
define('SCRIPT_DEBUG', true); | |
@ini_set('display_errors',1); | |
// DEBUG QUERY | |
define( 'SAVEQUERIES', true ); | |
// __() returns the translated text, whereas _e() echoes the translated text out. | |
__(''); | |
_e(''); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment