debug-objects
debug-objects copied to clipboard
Last Query
get the last query in a single tab, maybe helpful.
add_filter( 'posts_request', 'get_last_query' );
function get_last_query( $query ) {
pre_print( $query );
return $query;
}