Beschrijving
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:
do_action( 'add_debug_info', $var, $label );
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)
Installatie
- Unzip the download package
- Upload
debug-bar-custom-infoto the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
Beoordelingen
Er zijn geen beoordelingen voor deze plugin.
Bijdragers & ontwikkelaars
“Debug Bar Custom Info” is open source software. De volgende personen hebben bijgedragen aan deze plugin.
BijdragersVertaal “Debug Bar Custom Info” in je eigen taal.
Interesse in ontwikkeling?
Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.
Changelog
1.0.2
- Add 2nd param “label” to
do_action
1.0.1
- Use
do_actionto prevent fatal error when plugin files is not loaded
1.0
- First release
