Skip to content

Instantly share code, notes, and snippets.

@wpsmith
Created September 11, 2012 15:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wpsmith/3699573 to your computer and use it in GitHub Desktop.
Save wpsmith/3699573 to your computer and use it in GitHub Desktop.
Debugging WP_Query
<?php
add_action( 'template_redirect', 'wps_debug' );
function wps_debug() {
global $wp_query;
if( isset( $_GET['debug'] ) ) {
echo '<pre>'; print_r( $wp_query ); echo '</pre>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment