This plugin adds an extra panel to Debug Bar plugin that allows developers to output custom debug info.
Developers can log any variable to see its value when running PHP in WordPress. This helps developers see the real-time values of variables. It works exactly like console.log() in browsers.
How to add custom debug info
Add the following code wherever you want to debug a variable:
where $var can has any data type.
- If
$varis a string or any simple value, the value is outputted directly. - If
$varis an array or object, the output is the same asprint_r( $var ).
And $label is the description label (optional).
How to view debug info
- Click on Debug Bar in the top right of the admin bar
- Select Custom Info panel (see screenshots)

评论0