Skip to content

Instantly share code, notes, and snippets.

@richjenks
Created January 23, 2015 12:03
Show Gist options
  • Save richjenks/0538db4968d31be77afe to your computer and use it in GitHub Desktop.
Save richjenks/0538db4968d31be77afe to your computer and use it in GitHub Desktop.
WP_DEBUG in JavaScript
add_action( 'wp_head', function () {
echo '<script>var WP_DEBUG = ';
echo ( defined( 'WP_DEBUG' ) && WP_DEBUG === true ) ? 'true' : 'false';
echo ';</script>';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment