Skip to content

Instantly share code, notes, and snippets.

@funteractive
Created June 7, 2013 22:13
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 funteractive/5732778 to your computer and use it in GitHub Desktop.
Save funteractive/5732778 to your computer and use it in GitHub Desktop.
Display $wp_query on front page of WordPress
<?php
add_filter( 'pre_get_posts', 'query_debug' );
function query_debug( $wp_query ){
var_dump( $wp_query );
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment