Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Created August 28, 2018 12:05
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 tommcfarlin/280fb3491cd9529770c74050d9ace715 to your computer and use it in GitHub Desktop.
Save tommcfarlin/280fb3491cd9529770c74050d9ace715 to your computer and use it in GitHub Desktop.
[WordPress] Tools For WordPress Projects: Some of What I Use Daily
<?php
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', true );
@ini_set( 'display_errors', 1 );
define( 'SCRIPT_DEBUG', true );
define( 'SAVEQUERIES', true );
<?php
error_log(print_r($value, true));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment