Title: Debugging in WordPress
Published: March 28, 2023
Last modified: July 7, 2025

---

# Debugging in WordPress

## In this article

 * [Example wp-config.php for Debugging](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#example-wp-config-php-for-debugging)
 * [WP_DEBUG](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#wp_debug)
    - [PHP Errors, Warnings, and Notices](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#php-errors-warnings-and-notices)
    - [Custom PHP Debugging](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#custom-php-debugging)
    - [Deprecated Functions and Arguments](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#deprecated-functions-and-arguments)
 * [WP_DEBUG_LOG](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#wp_debug_log)
 * [WP_DEBUG_DISPLAY](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#wp_debug_display)
 * [SCRIPT_DEBUG](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#script_debug)
 * [SAVEQUERIES](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#savequeries)
 * [Debugging Plugins](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#debugging-plugins)

[ Back to top](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#wp--skip-link--target)

Debugging PHP code is part of any project, but WordPress comes with specific debugging
systems designed to simplify the process as well as standardize code across the 
core, plugins, and themes. This page describes the various debugging tools available
in WordPress and how to be more productive in your coding, as well as increasing
the overall quality and interoperability of your code.

For non-programmers or general users, these options can be used to show detailed
information about errors.

**NOTE**: Before making any modifications to your website, verify that you have 
either utilized a staging environment or taken an appropriate backup of your site.

## 󠀁[Example wp-config.php for Debugging](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#example-wp-config-php-for-debugging)󠁿

The following code, inserted in your [wp-config.php](https://wordpress.org/documentation/article/editing-wp-config-php/)
file, will log all errors, notices, and warnings to a file called `debug.log` in
the `wp-content` directory. It will also hide the errors, so they do not interrupt
page generation.

    ```
    // Enable WP_DEBUG mode
    define( 'WP_DEBUG', true );
    ```

    ```
    // Enable Debug logging to the /wp-content/debug.log file
    define( 'WP_DEBUG_LOG', true );
    ```

    ```
    // Disable display of errors and warnings
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 0 );
    ```

    ```
    // Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
    define( 'SCRIPT_DEBUG', true );
    ```

**NOTE**: You must insert this **BEFORE** `/* That's all, stop editing! Happy blogging.*/`
in the [wp-config.php](https://developer.wordpress.org/advanced-administration/wordpress/wp-config/)
file.

## 󠀁[WP_DEBUG](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#wp_debug)󠁿

`WP_DEBUG` is a PHP constant (a permanent global variable) that can be used to trigger
the “debug” mode throughout WordPress. It is assumed to be false by default, and
is usually set to true in the [wp-config.php](https://developer.wordpress.org/advanced-administration/wordpress/wp-config/)
file on development copies of WordPress.

    ```
    // This enables debugging.
    define( 'WP_DEBUG', true );
    ```

    ```
    // This disables debugging.  
    define( 'WP_DEBUG', false );
    ```

**Note**: The `true` and `false` values in the example are not surrounded by apostrophes(‘)
because they are boolean (true/false) values. If you set constants to `'false'`,
they will be interpreted as true because the quotes make it a string rather than
a boolean.

It is not recommended to use `WP_DEBUG` or the other debug tools on live sites; 
they are meant for local testing and staging installs.

### 󠀁[PHP Errors, Warnings, and Notices](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#php-errors-warnings-and-notices)󠁿

Enabling `WP_DEBUG` will cause all PHP errors, notices, and warnings to be displayed.
This is likely to modify the default behavior of PHP, which only displays fatal 
errors or shows a white screen of death when errors are reached.

Showing all PHP notices and warnings often results in error messages for things 
that don’t seem broken, but do not follow proper data validation conventions inside
PHP. These warnings are easy to fix once the relevant code has been identified, 
and the resulting code is almost always more bug-resistant and easier to maintain.

### 󠀁[Custom PHP Debugging](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#custom-php-debugging)󠁿

If it is necessary to log non-error information for debugging purposes, PHP does
offer the `error_log` function for this purpose. However, this method does not provide
properly formatted output by default.

To address this, you may add another function on your site to handle formatting,
either by creating a [custom plugin](https://developer.wordpress.org/plugins/plugin-basics/)
or using a snippet with some [code snippets](https://wordpress.org/plugins/search/code+snippets/)
plugin. The function will act as a wrapper for the `error_log` using `print_r` to
format arrays and objects correctly before logging them.

Below is an example function that requires `WP_DEBUG` to be enabled.

    ```
    function write_log( $data ) {
        if ( true === WP_DEBUG ) {
            if ( is_array( $data ) || is_object( $data ) ) {
                error_log( print_r( $data, true ) );
            } else {
                error_log( $data );
            }
        }
    }
    ```

Usage Examples:

    ```
    write_log( 'DEBUG TEXT' );
    write_log( $variable );
    ```

**Note**: It is not recommended to add custom code like the above example in `functions.
php` to avoid maintenance, security, performance, compatibility, and code organization
issues.

### 󠀁[Deprecated Functions and Arguments](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#deprecated-functions-and-arguments)󠁿

Enabling `WP_DEBUG` will also cause notices about deprecated functions and arguments
within WordPress that are being used on your site. These are functions or function
arguments that have not been removed from the core code yet, but are slated for 
deletion in the near future. Deprecation notices often indicate the new function
that should be used instead.

## 󠀁[WP_DEBUG_LOG](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#wp_debug_log)󠁿

`WP_DEBUG_LOG` is a companion to WP_DEBUG that causes all errors to also be saved
to a `debug.log` log file. This is useful if you want to review all notices later
or need to view notices generated off-screen (e.g. during an AJAX request or `wp-
cron` run).

Note that this allows you to write to a log file using PHP’s built in `error_log()`
function, which can be useful for instance when debugging Ajax events.

When set to `true`, the log is saved to `debug.log` in the content directory (usually`
wp-content/debug.log`) within your site’s file system. Alternatively, you can set
it to a valid file path to have the file saved elsewhere.

    ```
    define( 'WP_DEBUG_LOG', true );
    ```

-or-

    ```
    define( 'WP_DEBUG_LOG', '/tmp/wp-errors.log' );
    ```

**Note**: for `WP_DEBUG_LOG` to do anything, `WP_DEBUG` must be enabled (true). 
Remember, you can turn off `WP_DEBUG_DISPLAY` independently.

## 󠀁[WP_DEBUG_DISPLAY](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#wp_debug_display)󠁿

`WP_DEBUG_DISPLAY` is another companion to `WP_DEBUG` that controls whether debug
messages are shown inside the HTML of pages or not. The default is ‘true’ which 
shows errors and warnings as they are generated. Setting this to false will hide
all errors. This should be used with `WP_DEBUG_LOG` so that errors can be reviewed
later.

    ```
    define( 'WP_DEBUG_DISPLAY', false );
    ```

**Note**: for `WP_DEBUG_DISPLAY` to do anything, `WP_DEBUG` must be enabled (true).
Remember, you can control `WP_DEBUG_LOG` independently.

## 󠀁[SCRIPT_DEBUG](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#script_debug)󠁿

`SCRIPT_DEBUG` is a related constant that will force WordPress to use the “dev” 
versions of core CSS and JavaScript files rather than the minified versions that
are normally loaded. This is useful when you are testing modifications to any built-
in `.js` or `.css` files. The default is `false`.

    ```
    define( 'SCRIPT_DEBUG', true );
    ```

## 󠀁[SAVEQUERIES](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#savequeries)󠁿

The `SAVEQUERIES` definition saves database queries to an array, which can then 
be displayed to help analyze those queries. When the constant is set to true, it
causes each query to be saved along with the time it took to execute and the function
that called it.

    ```
    define( 'SAVEQUERIES', true );
    ```

The array is stored in the global `$wpdb->queries`.

**NOTE**: This will have a performance impact on your site, so make sure to turn
this off when you aren’t debugging.

## 󠀁[Debugging Plugins](https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/?menu_open=1&output_format=md#debugging-plugins)󠁿

There are many [debugging plugins](https://wordpress.org/plugins/search/debug/) 
for WordPress that show more information about the internals, either for a specific
component or in general.

For example, [Debug Bar](https://wordpress.org/plugins/debug-bar/) adds a debug 
menu to the admin bar that shows query, cache, and other helpful debugging information.
When WP_DEBUG is enabled, it also tracks PHP Warnings and Notices to make them easier
to find.

First published

March 28, 2023

Last updated

July 7, 2025

Edit article

[ Improve it on GitHub: Debugging in WordPress ](https://github.com/WordPress/Advanced-administration-handbook/edit/main/debug/debug-wordpress.md)

Changelog

[ See list of changes: Debugging in WordPress ](https://github.com/WordPress/Advanced-administration-handbook/commits/main/debug/debug-wordpress.md)

[  Previous: Debugging WordPress](https://developer.wordpress.org/advanced-administration/debug/)

[  Next: Debugging a WordPress Network](https://developer.wordpress.org/advanced-administration/debug/debug-network/)