Caleb Stauffer

Results 154 comments of Caleb Stauffer

I'm not satisfied with the current integration. Going to rebuild as a separate collector.

Rebuilt using separate collector and output. 😄

Man, forgot about this; so cool. 😂

@igmoweb I created a plugin, [_Query Monitor Extend_](https://github.com/crstauf/query-monitor-extend), which adds several panels to QM, including user defined constants. Recommend the `version/1.0` branch, but `master` should work as well.

Really the only thing I can think of that would make sense, is the amount of time that QM (collectors and output) adds to the document's response; would be helpful...

Yep, using `$wp_filter`, I’ve identified the last priority on a hook, incremented by one, and then added a hook. Using hooks though makes it difficult to (automatically and simply) make...

Point of clarity: I seem to recall seeing a negative priority on a hook, but don’t recall when or where.

I've started on [a PR for timing hooks](https://github.com/johnbillion/query-monitor/pull/407). Here's the code I tested with: ```php add_action( 'temp', 'qm_start', 0 ); add_action( 'temp', 'qm_lap', 9 ); add_action( 'temp', 'qm_lap', 11 );...