Skip to content

Instantly share code, notes, and snippets.

@scribu
Created January 12, 2011 02:39
Show Gist options
  • Save scribu/775598 to your computer and use it in GitHub Desktop.
Save scribu/775598 to your computer and use it in GitHub Desktop.
Debug WP_Query request
<?php
function debug_query() {
add_filter('the_posts', '_debug_query', 10, 2);
}
function _debug_query($posts, $wp_query) {
remove_filter( current_filter(), __FUNCTION__, 10, 2 );
debug( $wp_query->request );
return $posts;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment