Title: Query Monitor
Author: John Blackbourn
Published: <strong>November 19, 2013</strong>
Last modified: June 20, 2026

---

Search plugins

![](https://ps.w.org/query-monitor/assets/banner-772x250.png?rev=2457098)

![](https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095)

# Query Monitor

 By [John Blackbourn](https://profiles.wordpress.org/johnbillion/)

[Download](https://downloads.wordpress.org/plugin/query-monitor.4.0.7.zip)

[Live Preview](https://wordpress.org/plugins/query-monitor/?preview=1)

 * [Details](https://wordpress.org/plugins/query-monitor/#description)
 * [Reviews](https://wordpress.org/plugins/query-monitor/#reviews)
 * [Development](https://wordpress.org/plugins/query-monitor/#developers)

 [Support](https://wordpress.org/support/plugin/query-monitor/)

## Description

Query Monitor is the developer tools panel for WordPress and WooCommerce. It enables
debugging of database queries, PHP errors, hooks and actions, block editor blocks,
enqueued scripts and stylesheets, HTTP API calls, and more.

It includes some advanced features such as debugging of Ajax calls, REST API calls,
user capability checks, and full support for block themes and full site editing.
It includes the ability to narrow down much of its output by plugin or theme, allowing
you to quickly determine poorly performing plugins, themes, or functions.

Query Monitor focuses heavily on presenting its information in a useful manner, 
for example by showing aggregate database queries grouped by the plugins, themes,
or functions that are responsible for them. It adds an admin toolbar menu showing
an overview of the current page, with complete debugging information shown in panels
once you select a menu item.

Query Monitor supports versions of WordPress up to three years old, and PHP version
7.4 or higher.

For complete information, please see [the Query Monitor website](https://querymonitor.com/).

Here’s an overview of what’s shown for each page load:

 * Database queries, including notifications for slow, duplicate, or erroneous queries.
   Allows filtering by query type (`SELECT`, `UPDATE`, `DELETE`, etc), responsible
   component (plugin, theme, WordPress core), and calling function, and provides
   separate aggregate views for each.
 * The template filename, the complete template hierarchy, and names of all template
   parts that were loaded or not loaded (for block themes and classic themes).
 * PHP errors presented nicely along with their responsible component and call stack,
   and a visible warning in the admin toolbar.
 * Usage of “Doing it Wrong” or “Deprecated” functionality in the code on your site.
 * Blocks and associated properties within post content and within full site editing(
   FSE).
 * Matched rewrite rules, associated query strings, and query vars.
 * Enqueued scripts and stylesheets, along with their dependencies, dependents, 
   and alerts for broken dependencies.
 * Language settings and loaded translation files (MO files and JSON files) for 
   each text domain.
 * HTTP API requests, with response code, responsible component, and time taken,
   with alerts for failed or erroneous requests.
 * User capability checks, along with the result and any parameters passed to the
   capability check.
 * Environment information, including detailed information about PHP, the database,
   WordPress, and the web server.
 * The values of all WordPress conditional functions such as `is_single()`, `is_home()`,
   etc.
 * Transients that were updated.
 * Usage of `switch_to_blog()` and `restore_current_blog()` on Multisite installations.

In addition:

 * Whenever a redirect occurs, Query Monitor adds an HTTP header containing the 
   call stack, so you can use your favourite HTTP inspector or browser developer
   tools to trace what triggered the redirect.
 * The response from any jQuery-initiated Ajax request on the page will contain 
   various debugging information in its headers. PHP errors also get output to the
   browser’s developer console.
 * The response from an authenticated WordPress REST API request will contain an
   overview of performance information and PHP errors in its headers, as long as
   the authenticated user has permission to view Query Monitor’s output. An [an enveloped REST API request](https://developer.wordpress.org/rest-api/using-the-rest-api/global-parameters/#_envelope)
   will include even more debugging information in the `qm` property of the response.

By default, Query Monitor’s output is only shown to Administrators on single-site
installations, and Super Admins on Multisite installations.

In addition to this, you can set an authentication cookie which allows you to view
Query Monitor output when you’re not logged in (or if you’re logged in as a non-
Administrator). See the Settings panel for details.

### Browser extension

Query Monitor is also available as an optional browser dev tools extension. This
is an alternative to using the in-page panel that gets output into the admin toolbar.

Using the browser extension has some advantages over the in-page panel:

 * The Query Monitor panel doesn’t take up space within the page you are inspecting
 * The panel can be resized, undocked, and moved around like any other developer
   tools panel

[Information about the Query Monitor browser extension can be found here](https://querymonitor.com/wordpress-debugging/browser-extension/).

### Other Plugins

I maintain several other plugins for developers. Check them out:

 * [User Switching](https://wordpress.org/plugins/user-switching/) provides instant
   switching between user accounts in WordPress.
 * [WP Crontrol](https://wordpress.org/plugins/wp-crontrol/) lets you view and control
   what’s happening in the WP-Cron system

### Thanks

The time that I spend maintaining this plugin and others is in part sponsored by:

 * [Automattic](https://automattic.com/)
 * [ServMask](https://servmask.com/)
 * [WP Staging](https://wp-staging.com/)
 * [All my kind sponsors on GitHub](https://github.com/sponsors/johnbillion)

### Privacy Statement

Query Monitor is private by default and always will be. It does not persistently
store any of the data that it collects. It does not send data to any third party,
nor does it include any third party resources. [Query Monitor’s full privacy statement can be found here](https://querymonitor.com/privacy/).

### Accessibility Statement

Query Monitor aims to be fully accessible to all of its users. [Query Monitor’s full accessibility statement can be found here](https://querymonitor.com/accessibility/).

## Screenshots

[⌊Admin Toolbar Menu⌉⌊Admin Toolbar Menu⌉[

Admin Toolbar Menu

[⌊Aggregate Database Queries by Component⌉⌊Aggregate Database Queries by Component⌉[

Aggregate Database Queries by Component

[⌊Database Queries⌉⌊Database Queries⌉[

Database Queries

[⌊Timeline⌉⌊Timeline⌉[

Timeline

[⌊Hooks and Actions⌉⌊Hooks and Actions⌉[

Hooks and Actions

[⌊HTTP API Requests⌉⌊HTTP API Requests⌉[

HTTP API Requests

[⌊Logs⌉⌊Logs⌉[

Logs

## FAQ

### Does this plugin work with PHP 8?

Yes, it’s actively tested and working up to PHP 8.5.

### Who can see Query Monitor’s output?

By default, Query Monitor’s output is only shown to Administrators on single-site
installations, and Super Admins on Multisite installations.

In addition to this, you can set an authentication cookie which allows you to view
Query Monitor output when you’re not logged in, or when you’re logged in as a user
who cannot usually see Query Monitor’s output. See the Settings panel for details.

### Does Query Monitor itself impact the page generation time or memory usage?

Short answer: Yes, but only a little.

Long answer: Query Monitor has a small impact on page generation time because it
hooks into a few places in WordPress in the same way that other plugins do. The 
impact is negligible.

On pages that have an especially high number of database queries (in the hundreds),
Query Monitor currently uses more memory than I would like it to. This is due to
the amount of data that is captured in the stack trace for each query. I have been
and will be working to continually reduce this.

### Can I prevent Query Monitor from collecting data during long-running requests?

Yes, you can call `do_action( 'qm/cease' )` to instruct Query Monitor to cease operating
for the remainder of the page generation. It will detach itself from further data
collection, discard any data it’s collected so far, and skip the output of its information.

This is useful for long-running operations that perform a very high number of database
queries, consume a lot of memory, or otherwise are of no concern to Query Monitor,
for example:

 * Backing up or restoring your site
 * Importing or exporting a large amount of data
 * Running security scans

### Are there any add-on plugins for Query Monitor?

[A list of add-on plugins for Query Monitor can be found here.](https://querymonitor.com/help/add-on-plugins/)

In addition, Query Monitor transparently supports add-ons for the Debug Bar plugin.
If you have any Debug Bar add-ons installed, deactivate Debug Bar and the add-ons
will show up in Query Monitor’s menu.

### Where can I suggest a new feature or report a bug?

Please use [the issue tracker on Query Monitor’s GitHub repo](https://github.com/johnbillion/query-monitor/issues)
as it’s easier to keep track of issues there, rather than on the wordpress.org support
forums.

### Is Query Monitor already included with my hosting?

Some web hosts bundle Query Monitor as part of their hosting platform, which means
you don’t need to install it yourself. Here are some that I’m aware of:

 * [Altis Cloud](https://www.altis-dxp.com/resources/developer-docs/dev-tools/).
 * [WordPress VIP](https://wpvip.com/), although users need to be granted the `view_query_monitor`
   capability even if they’re an Administrator. [See the WordPress VIP documentation for details](https://docs.wpvip.com/performance/query-monitor/enable/).

### Can I click on stack traces to open the file in my editor?

Yes. You can enable this on the Settings panel.

### How can I report a security bug?

You can submit a private security vulnerability report to Query Monitor via [the Security tab on the GitHub repo](https://github.com/johnbillion/query-monitor/security).
The GitHub Security Advisory process facilitates private collaboration on security
issues. You’ll receive credit for a valid report and a CVE if necessary.

Do not report security issues on the WordPress.org support forums or via email. 
Thank you.

### Do you accept donations?

[I am accepting sponsorships via the GitHub Sponsors program](https://github.com/sponsors/johnbillion).
If you work at an agency that develops with WordPress, ask your company to provide
sponsorship in order to invest in its supply chain. The tools that I maintain probably
save your company time and money, and GitHub sponsorship can now be done at the 
organisation level.

In addition, if you like the plugin then I’d love for you to [leave a review](https://wordpress.org/support/view/plugin-reviews/query-monitor).
Tell all your friends about it too!

## Reviews

![](https://secure.gravatar.com/avatar/a27a6d11672af559c57e5d2bf533d369c22d7d42bc594246f11051c1c1309b8f?
s=60&d=retro&r=g)

### 󠀁[Filling the Gap in Local Development](https://wordpress.org/support/topic/the-missing-piece-for-local-development/)󠁿

 [Andrea Roenning](https://profiles.wordpress.org/awetz583/) July 7, 2026

This plugin does an excellent job of displaying information that is helpful in troubleshooting
while working on WordPress theme and plugin development. I appreciate how PHP errors
and deprecation warnings are grouped together and moved away from the published 
page view. Being able to see transient updates and SQL queries at a glance is so
nice.

![](https://secure.gravatar.com/avatar/ec64a1e9d7d8f5a62e5ebc0172272057b10c4fd2cec5fa62954de1bb4d6412d5?
s=60&d=retro&r=g)

### 󠀁[Sanity saver](https://wordpress.org/support/topic/sanity-saver-5/)󠁿

 [androidusercu](https://profiles.wordpress.org/androidusercu/) May 23, 2026

Saved my sanity today, (Orderable had been calling on a youtube link and added each
page load 5s)

![](https://secure.gravatar.com/avatar/eb5de3db5bfc8ef5845b4173265bf3d079f460fb99c9e346380b04d07bea8f05?
s=60&d=retro&r=g)

### 󠀁[Absolutely indispensable!](https://wordpress.org/support/topic/absolutely-indispensable-4/)󠁿

 [Mehraz Morshed](https://profiles.wordpress.org/mehrazmorshed/) April 20, 2026

I’ve been using Query Monitor since 2023, and I honestly can’t imagine debugging
WordPress sites without it anymore. It’s not just a plugin, it’s a complete developer
toolbox that sits in the admin bar. It’s lightweight enough to keep running on production
sites without noticeable overhead. John Blackbourn has built something truly special
here. Five stars isn’t enough. Thank you for this masterpiece.

![](https://secure.gravatar.com/avatar/4811455e6ea1a472036f8a80da9f7e42da14147e44cbe5d4e64453c78386bceb?
s=60&d=retro&r=g)

### 󠀁[Gah Bless You Sir](https://wordpress.org/support/topic/gah-bless-you-sir/)󠁿

 [casualadam](https://profiles.wordpress.org/4dam/) April 8, 2026

This plugin helped me realize a problem right in front of my eyes this whole time.
A fantastic tool for troubleshooting database issues!

![](https://secure.gravatar.com/avatar/24a79fa66dbe0eb01ca105d02dee9eaffa7311e93048f16fa3cae4dc965d1874?
s=60&d=retro&r=g)

### 󠀁[The most useful plugin of all time](https://wordpress.org/support/topic/the-most-useful-plugin-of-all-time/)󠁿

 [dochara](https://profiles.wordpress.org/dochara/) March 27, 2026

If you’ve even the smell of an issue with your site, this will track it down so 
that you can fix it. An indispensable tool for developers.

![](https://secure.gravatar.com/avatar/ea6d0543003811bf39dfef74a31f15287a49823fc40fb5011edcc3c0d71614b7?
s=60&d=retro&r=g)

### 󠀁[Good](https://wordpress.org/support/topic/good-9093/)󠁿

 [kloddant](https://profiles.wordpress.org/kloddant/) February 5, 2026 1 reply

Good. Shows a lot of useful stuff. Note that you will need to add /wp-content/db.
php to your gitignore.

 [ Read all 468 reviews ](https://wordpress.org/support/plugin/query-monitor/reviews/)

## Contributors & Developers

“Query Monitor” is open source software. The following people have contributed to
this plugin.

Contributors

 *   [ John Blackbourn ](https://profiles.wordpress.org/johnbillion/)

“Query Monitor” has been translated into 26 locales. Thank you to [the translators](https://translate.wordpress.org/projects/wp-plugins/query-monitor/contributors)
for their contributions.

[Translate “Query Monitor” into your language.](https://translate.wordpress.org/projects/wp-plugins/query-monitor)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/query-monitor/), check
out the [SVN repository](https://plugins.svn.wordpress.org/query-monitor/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/query-monitor/) 
by [RSS](https://plugins.trac.wordpress.org/log/query-monitor/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

### 4.0.7 (20 June 2026)

 * Confirms support for WordPress 7.0
 * Makes improvements to the admin bar menu
 * Shows database queries on the timeline even when db.php isn’t in place
 * Adds more error highlighting for problems with enqueued JavaScript and CSS dependencies
 * Adds some back-compat for old versions of the Chrome browser

### 4.0.6 (11 April 2026)

Version 4 of Query Monitor adds a new timeline view, and switches from rendering
its panels server-side in PHP to efficiently rendering them client-side in Preact.

Version 4.0.6 fixes a compatibility issue with the GeneratePress theme.

[More information at querymonitor.com/4](https://querymonitor.com/4).

### 4.0.5 (10 April 2026)

Version 4 of Query Monitor adds a new timeline view, and switches from rendering
its panels server-side in PHP to efficiently rendering them client-side in Preact.

Version 4.0.5 fixes the following:

 * Ensures closing script tags within data don’t break the output
 * Adds “Doing it Wrong” data to the timeline view

[More information at querymonitor.com/4](https://querymonitor.com/4).

### 4.0.4 (10 April 2026)

Version 4 of Query Monitor adds a new timeline view, and switches from rendering
its panels server-side in PHP to efficiently rendering them client-side in Preact.

Version 4.0.4 fixes the following:

 * Ensures the Scripts panel remains visible when no scripts are enqueued in the
   header
 * Corrects the display of number formatting in some locales

[More information at querymonitor.com/4](https://querymonitor.com/4).

### 4.0.3 (9 April 2026)

Version 4 of Query Monitor adds a new timeline view, and switches from rendering
its panels server-side in PHP to efficiently rendering them client-side in Preact.

Version 4.0.3 fixes the following:

 * Improves compatibility with plugins that perform non-UTF8 queries or make other
   use of non-UTF8 data
 * Avoids a PHP warning for undefined file and line number in some stack trace frames
 * Simplifies and standardises the format of names used for closure callbacks
 * Improves styling and layout of the timeline view

[More information at querymonitor.com/4](https://querymonitor.com/4).

### 4.0.2 (9 April 2026)

Version 4 of Query Monitor adds a new timeline view, and switches from rendering
its panels server-side in PHP to efficiently rendering them client-side in Preact.

Version 4.0.2 fixes the following:

 * Adds further backwards compatibility for third-party plugins that read from the
   QM data collectors and output their own panels
 * Adds transient updates to the timeline view

[More information at querymonitor.com/4](https://querymonitor.com/4).

### 4.0.1 (7 April 2026)

Version 4 of Query Monitor adds a new timeline view, and switches from rendering
its panels server-side in PHP to efficiently rendering them client-side in Preact.

 * Version 4.0.1 fixes a backwards compatibility issue with plugins that register
   their own menus or sub-menus in Query Monitor.

[More information at querymonitor.com/4](https://querymonitor.com/4).

### 4.0.0 (7 April 2026)

Version 4 of Query Monitor adds a new timeline view, and switches from rendering
its panels server-side in PHP to efficiently rendering them client-side in Preact.
This new approach provides several benefits:

 * Performance is greatly increased, particularly on sites where a large number 
   of queries are performed, a large number of PHP errors are triggered, or a large
   amount of data is collected in one of the other panels.
 * Further future enhancements are facilitated, such as displaying client-side metrics,
   lazy-loading data, showing data from different requests, and more remixing of
   data into different views.
 * The raw data collected by Query Monitor has been reduced in size and memory usage,
   and is now exposed to the page as JSON. Take a look at the `QueryMonitorData`
   object in your browser console to play around with it.

[More information at querymonitor.com/4](https://querymonitor.com/4).

### 3.20.4 (19 March 2026)

 * This is a security release which fixes a reflected XSS vulnerability in the Request
   panel. [Full details in the security advisory](https://github.com/johnbillion/query-monitor/security/advisories/GHSA-2xr4-chcf-vmvf).

### 3.20.3 (17 March 2026)

 * Clicking QM in the the admin toolbar a second time will now close the panel
 * Improvements to accessibility of the toggle buttons
 * Failed HTTP API GET requests now show a clickable link

### Earlier versions

For the changelog of earlier versions, [refer to the releases page on GitHub](https://github.com/johnbillion/query-monitor/releases).

## Meta

 *  Version **4.0.7**
 *  Last updated **1 month ago**
 *  Active installations **200,000+**
 *  WordPress version ** 6.2 or higher **
 *  Tested up to **7.0.2**
 *  PHP version ** 7.4 or higher **
 *  Languages
 * [Belarusian](https://bel.wordpress.org/plugins/query-monitor/), [Chinese (China)](https://cn.wordpress.org/plugins/query-monitor/),
   [Chinese (Taiwan)](https://tw.wordpress.org/plugins/query-monitor/), [Dutch](https://nl.wordpress.org/plugins/query-monitor/),
   [Dutch (Belgium)](https://nl-be.wordpress.org/plugins/query-monitor/), [English (Australia)](https://en-au.wordpress.org/plugins/query-monitor/),
   [English (Canada)](https://en-ca.wordpress.org/plugins/query-monitor/), [English (New Zealand)](https://en-nz.wordpress.org/plugins/query-monitor/),
   [English (South Africa)](https://en-za.wordpress.org/plugins/query-monitor/),
   [English (UK)](https://en-gb.wordpress.org/plugins/query-monitor/), [English (US)](https://wordpress.org/plugins/query-monitor/),
   [French (Canada)](https://fr-ca.wordpress.org/plugins/query-monitor/), [French (France)](https://fr.wordpress.org/plugins/query-monitor/),
   [German](https://de.wordpress.org/plugins/query-monitor/), [Italian](https://it.wordpress.org/plugins/query-monitor/),
   [Japanese](https://ja.wordpress.org/plugins/query-monitor/), [Korean](https://ko.wordpress.org/plugins/query-monitor/),
   [Portuguese (Brazil)](https://br.wordpress.org/plugins/query-monitor/), [Russian](https://ru.wordpress.org/plugins/query-monitor/),
   [Spanish (Chile)](https://cl.wordpress.org/plugins/query-monitor/), [Spanish (Colombia)](https://es-co.wordpress.org/plugins/query-monitor/),
   [Spanish (Ecuador)](https://es-ec.wordpress.org/plugins/query-monitor/), [Spanish (Mexico)](https://es-mx.wordpress.org/plugins/query-monitor/),
   [Spanish (Spain)](https://es.wordpress.org/plugins/query-monitor/), [Spanish (Venezuela)](https://ve.wordpress.org/plugins/query-monitor/),
   [Swedish](https://sv.wordpress.org/plugins/query-monitor/), and [Ukrainian](https://uk.wordpress.org/plugins/query-monitor/).
 *  [Translate into your language](https://translate.wordpress.org/projects/wp-plugins/query-monitor)
 * Tags
 * [debug](https://wordpress.org/plugins/tags/debug/)[debug bar](https://wordpress.org/plugins/tags/debug-bar/)
   [development](https://wordpress.org/plugins/tags/development/)[performance](https://wordpress.org/plugins/tags/performance/)
   [query monitor](https://wordpress.org/plugins/tags/query-monitor/)
 *  [Advanced View](https://wordpress.org/plugins/query-monitor/advanced/)

## Ratings

 4.9 out of 5 stars.

 *  [  453 5-star reviews     ](https://wordpress.org/support/plugin/query-monitor/reviews/?filter=5)
 *  [  3 4-star reviews     ](https://wordpress.org/support/plugin/query-monitor/reviews/?filter=4)
 *  [  2 3-star reviews     ](https://wordpress.org/support/plugin/query-monitor/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/query-monitor/reviews/?filter=2)
 *  [  10 1-star reviews     ](https://wordpress.org/support/plugin/query-monitor/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/query-monitor/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/query-monitor/reviews/)

## Contributors

 *   [ John Blackbourn ](https://profiles.wordpress.org/johnbillion/)

## Support

Issues resolved in last two months:

     3 out of 7

 [View support forum](https://wordpress.org/support/plugin/query-monitor/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://github.com/sponsors/johnbillion)