Skip to content

Instantly share code, notes, and snippets.

@mayurah
Last active May 20, 2016 04:12
Show Gist options
  • Save mayurah/120ead8f1b82c40d94f022e3b33617c9 to your computer and use it in GitHub Desktop.
Save mayurah/120ead8f1b82c40d94f022e3b33617c9 to your computer and use it in GitHub Desktop.
<?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