Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Created October 16, 2014 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlashbrooke/3b33de4b3166930b4f0d to your computer and use it in GitHub Desktop.
Save hlashbrooke/3b33de4b3166930b4f0d to your computer and use it in GitHub Desktop.
WordPress debugging tips
<?php
die();
?>
<?php
function printr( $arr ) {
echo "<pre>";
print_r( $arr );
echo "<pre>";
}
?>
<?php
define( 'SAVEQUERIES', true );
?>
<?php
define( 'SCRIPT_DEBUG', true );
?>
<?php
define( 'WP_DEBUG', true );
?>
<?php
define( 'WP_MEMORY_LIMIT', '128M' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment