Skip to content

Instantly share code, notes, and snippets.

@astockwell-ps
Created May 11, 2012 18:09
Show Gist options
  • Save astockwell-ps/2661421 to your computer and use it in GitHub Desktop.
Save astockwell-ps/2661421 to your computer and use it in GitHub Desktop.
PHP: WP: Turn on error reporting
<?php
// add this before any other code on a page, errors will print at bottom
// via http://stackoverflow.com/questions/1018935/get-and-wordpress
error_reporting(E_ALL);
ini_set('display_errors', true);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment