Skip to content

Instantly share code, notes, and snippets.

@JayWood
Created August 26, 2014 03:02
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 JayWood/3c7c8683bc502cb575b3 to your computer and use it in GitHub Desktop.
Save JayWood/3c7c8683bc502cb575b3 to your computer and use it in GitHub Desktop.
dump the data as soon as it's available
<?php
/**
* Dump wp_query data
*/
function jw_die(){
global $wp_query;
wp_die( '<pre>' . print_r( $wp_query, true ) . '</pre>');
}
add_action( 'wp', 'jw_die' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment