BLACK FRIDAY
Save 59% on PageForge Annual $191/year $485/year
Claim 59% Off →
Debug This icon
Slowing down Tested up to 6.8.10 #13 in debug

Debug This

Peek under the hood with sixty debugging reports just one click away.

Active installs2K+1K+ tier
Downloads · 30d355▲ +1.1% vs prev. 30d
Rating4.8/517 reviews
Health score48/100Fair
All-time downloads160.4KSince Dec 2012
Support resolved—No recent threads
RequiresWP 5.2PHP 5.6+
Downloads · 7d92▼ -2.1% week over week
Our verdict

Use with caution

Debug This works, but test it on a staging site before relying on it in 2026. It runs on 2K+ sites, is rated 4.8/5 and was last updated 1 year ago, and scores 48/100 on our health check.

  • No update in over a year
  • Only tested up to WordPress 6.8 (latest is 7.1)

How does it stack up?

Side-by-side on installs, updates, ratings & support

Daily downloads

61218Jun 28Aug 11Sep 25
Yesterday15
Daily average (1y)11
Peak day40Dec 10, 2025
Last 12 months3.9K

Download spikes usually follow a new release — each site that auto-updates counts as a download.

Rankings

Where Debug This stands today

WordPress.org search rankings

Live position in the plugin search, top 100
KeywordPositionCompeting pluginsCategory
debug #17 4,040 Best debug plugins →
debugger #11 130 Best debugger plugins →
developer >100 10,000 Best developer plugins →
hooks >100 9,712 Best hooks plugins →
query >100 9,367 Best query plugins →

Version adoption

Share of active sites per release.

  • 0.691.5%
  • 0.55.3%
  • Other3.3%

Rating breakdown

★★★★★★★★★★ 4.8 from 17 reviews

  • 5★94.1%
  • 4★0.00%
  • 3★0.00%
  • 2★0.00%
  • 1★5.9%

About Debug This

From the official readme · v0.6.7

Description

For admins, developers, and support staff, Debug This provides a ton of information about your WordPress installation, all from the front-end admin bar.

  • The current WP_Query object
  • Blog info and options
  • Embed providers
  • Files in rendered HTML (CSS, images, JavaScript)
  • Filters and actions
  • Images sizes
  • Globals and constants
  • Menus
  • Object cache stats
  • Plugins, must-use plugins, and dropins
  • Rewrite rules
  • Queries
  • PHP and server information
  • Post attachments
  • Post types
  • Scripts and styles enqueued
  • Shortcodes
  • Sidebars and widgets
  • Taxonomies and terms
  • Themes
  • Users
  • WP cron schedules and jobs
  • WP debug log

Debug This helps you save time and effort when trying to figure out what’s going on. Instead of hardcoding debug snippets or writing complex unit
tests for small functionality, you can simply bring to the surface what you need right from the admin bar.

For example, when viewing a single post, you can see:

  • a list of post attachments,
  • which menus and sidebars are being displayed,
  • the post type, post fields, and meta data,
  • the current query variables and query string,
  • the rewrite rules applied,
  • the author,
  • the terms,
  • and much more.

Extend

Debug This Functions

New debug modes can be created easily:

add_debug_extension(
    $mode,
    $menu_label,
    $description,
    $callback,
    $group = 'General'
);

Example

add_debug_extension(
    'actions',
    __('Actions', 'debug-this'),
    __('$wp_actions contains all active registered actions', 'debug-this'),
    'foo_callback',
    'Filters And Actions'
);
function foo_callback($buffer, $template){
    global $wp_actions;
    $debug = print_r($wp_actions, true);
    return $debug;
}

You can add links to the header of a debug mode page. Place this code within your debug callback function.

add_debug_header_link('http://urltolink', 'Link Label');

Extensions can be removed as well using remove_debug_extension($mode);

No PRE Tags

If you don’t want your debug output to be enclosed in PRE tags, simply set the following in your extension:

Debug_This::$no_pre = true;

Saved Queries and Execution Time

Retrieve saved queries and execution time by using the following static properties:

  • Debug_This::$execution_time
  • Debug_This::$queries – SAVEQUERIES must defined as true

URL Helpers

  • Debug_This::get_current_debug_url() – current URL with the debug query
  • Debug_This::get_escape_url() – used for the debug escape link that links to original page URL

WP Actions

  • debug_this – receives the $mode arg – outputs the debug code sent from the extension modes. The default action is set to priority 5. This allows you to prepend or append any output without conflict using less or greater priorities.

WP Filters

There are a few filters you can use to customize Debug This to your needs:

  • debug_this_template – receives $template arg – Use your own template
  • debug_this_default_mode – receives $mode arg – Alters the mode for the parent DT admin bar button link.
  • debug_this_output – receives $output, $mode args – Filter debug content before it’s rendered

JavaScript

To access the built-in Debug This JS functionality, enqueue your custom script with the dependency set to debug-this. Your script will inherit a jQuery dependency.

Object: debugThis

  • debugThis.mode – current mode
  • debugThis.defaultMode
  • debugThis.template – current included template
  • debugThis.queryVar – the defined query string variable

Functions:

  • isDebug()
  • getDebugMode() – uses isDebug()

Events:

A jQuery debug-this event is fired from the footer. You can hook into this event with the following;

jQuery(document).bind('debug-this', function(event, debugThis){
    console.log(debugThis);
});

Helper Functions

There are three included functions to help you work with files.

  • debug_this_get_file_ownership($file) – returns array('name' => $name, 'group' => $group)
  • debug_this_get_file_perms($file) – returns string – Example: 0775
  • debug_this_convert_perms_to_rwx($perms) – returns string – converts permission number to RWX format – Example: 0755 folder becomes drwxr-xr-x

Installation

  1. Upload to your plugins folder, usually wp-content/plugins/
  2. Activate the plugin on the plugin screen.
  3. Navigate to the front-end of your website and hover over the ‘Debug This’ menu item in the admin bar.

Frequently asked questions

How do I use Debug This?

Make sure the admin bar is enabled in your user profile. Visit any page/post/archive on your website and you will see a Debug This menu item on the admin bar.

What PHP version is this compatible with?

We’ve tested on PHP >= 5.2.17

Can I request new debug modes?

Certainly! In order to keep the plugin lightweight and performant, requests that are too localized for the greater good may be refused. If that happens, I will gladly help you build your own debug mode.

Can I alter the plugin or build my own debug modes?

Yes! Visit the Extend section to find out how you can thoroughly extend Debug This for your own needs.

Changelog

0.6.7 – 28.01.2024

  • Update: Tested up to WP 6.7

0.6.6 – 18.03.2025

  • Fix: Fixed URL query vars

0.6.5 – 28.01.2024

  • Update: Tested up to WP 6.7

0.6.4 – 07.01.2022

  • Display bug fix
  • Added: Sanitization and escapes

0.6.3 – October 10, 2019

  • Translation file update

0.6.2 – September 12, 2019

  • Translation ready

Full changelog on WordPress.org →

Screenshots

The current query, for example.
The current query, for example.
Enhanced display when a Kint debugger plugin is installed (see Description).
Enhanced display when a Kint debugger plugin is installed (see Description).

For developers

Is this your plugin? Show off the numbers.

Add a live badge to your site, docs or GitHub README. It updates on its own — no account needed.

Active installs badge Rating badge Health score badge

Best Debug This alternatives

All debug plugins →
Alternatives
Rank Plugin Active installs Rating Updated Health
1 WP Crontrol WP Crontrol Take control of the cron events on your WordPress website or WooCommerce store with WP… by John Blackbourn 300K+ ★★★★★★★★★★ 4.5 (165) 4 weeks ago 89
2 Query Monitor Query Monitor Query Monitor is the developer tools panel for WordPress and WooCommerce. by John Blackbourn 200K+ ★★★★★★★★★★ 4.9 (469) 3 months ago 71
3 Debug Bar Debug Bar Adds a debug menu to the admin bar that shows query, cache, and other helpful debugging… by WordPress.org 20K+ ★★★★★★★★★★ 4.1 (69) 7 months ago 65
4 WP Debugging WP Debugging A support/troubleshooting plugin for WordPress. by Andy Fragen 10K+ ★★★★★★★★★★ 5 (21) 1 month ago 75
5 Debug Log Manager – Conveniently Monitor and Inspect Errors Debug Log Manager – Conveniently Monitor and Inspect Errors Log PHP, database and JavaScript errors via WP_DEBUG with one click. Conveniently create… by Bowo 10K+ ★★★★★★★★★★ 5 (25) 3 months ago 79
6 My WP Customize Admin/Frontend My WP Customize Admin/Frontend Simply and easy-to-use the customize for Admin and Frontend. A lot of custom filters and… by gqevu6bsiz 8K+ ★★★★★★★★★★ 4.3 (16) 1 month ago 77
7 Code Profiler – WordPress Performance Profiling and Debugging Made Easy Code Profiler A profiler to measure the performance of your WordPress plugins and themes. by bruandet 8K+ ★★★★★★★★★★ 4.3 (36) 3 days ago 86
8 reBusted! reBusted! Force browsers to load the most recent file if modified. by Simon Prosser 6K+ ★★★★★★★★★★ 5 (11) 2 years ago 44
9 Plugin Detective – Troubleshooting Conflicts Plugin Detective – Troubleshooting Conflicts Quickly find and fix WordPress plugin conflicts, recover from fatal errors, and clear stuck… by NSquared 5K+ ★★★★★★★★★★ 4 (49) 4 days ago 79
10 Dashboard Widgets Suite Dashboard Widgets Suite Adds 9 awesome widgets to your WP Dashboard. Includes User Notes, Social Buttons, System… by Jeff Starr 4K+ ★★★★★★★★★★ 4.9 (38) 2 months ago 74

FAQ

Debug This: quick answers

Straight answers, pulled from live WordPress.org data.

Live data from WordPress.org · checked Sep 26, 2026

Is Debug This free?

Yes. Debug This is free to download and use from the official WordPress.org plugin directory.

Is Debug This safe to use in 2026?

Debug This works, but test it on a staging site before relying on it in 2026. It runs on 2K+ sites, is rated 4.8/5 and was last updated 1 year ago, and scores 48/100 on our health check.

How many websites use Debug This?

Debug This is active on 2K+ WordPress websites and has been downloaded 160,431 times since it launched in December 2012. It was downloaded 355 times in the last 30 days.

Does Debug This work with WordPress 7.1?

Debug This is officially tested up to WordPress 6.8.10, while the latest release is 7.1.2. It may still work, but try it on a staging site first.

What PHP version does Debug This need?

Debug This requires PHP 5.6 or higher. Most hosts run PHP 8.x today, so it works on any modern WordPress hosting.

When was Debug This last updated?

The latest version, 0.6.7, was released on June 4, 2025 (1 year ago).

Who makes Debug This?

Debug This is developed and maintained by Razvan Aldea.

What are the best alternatives to Debug This?

The most popular alternatives to Debug This are WP Crontrol (300K+ installs), Query Monitor (200K+ installs) and Debug Bar (20K+ installs).

Powered by PageForge

Want thousands of pages that rank like these? Build them in an afternoon.

This directory runs on the same engine as PageForge. Turn any spreadsheet, CSV or API into thousands of fast, SEO-ready WordPress pages — with schema, internal links and AI-written copy baked in.

  • CSV, Google Sheets & API data sources
  • AI content, schema & internal links per page
  • Works with Elementor, Gutenberg, Yoast & Rank Math
  • Free on WordPress.org — no credit card
Sarah is here to help!
Hi there! 👋 Need help finding what you're looking for?
Sarah
Sarah
Online & Ready to Help
Hi there! 👋 Need help finding what you're looking for?

We'll use this to continue our conversation

Just now ✓ Verified

Join 500+ SEO Pros Scaling Their Strategy

Get exclusive programmatic SEO tactics, AI content workflows, and the latest PageForge updates delivered straight to your inbox. Stay ahead of the algorithm.

We care about your data in our privacy policy.