debug-objects
debug-objects copied to clipboard
WordPress Plugin for debugging and learning with and at the application.
get the last query in a single tab, maybe helpful. ``` php add_filter( 'posts_request', 'get_last_query' ); function get_last_query( $query ) { pre_print( $query ); return $query; } ```
like the Debug Bar Cron Plugin commit: https://github.com/tollmanz/debug-bar-cron/commit/c2c5a436435c14a080649a867b1988f963eee19e Background: http://tollmanz.com/debug-bar-cron-missed-event-indicators/
http://wordpress.stackexchange.com/questions/96554/does-the-functions-php-file-ever-get-called-during-an-ajax-call-debug-ajax/96556#96556 maybe helpful