WP Log in Browser

I'm working on a nice admin screen to config auto-logging of some common things (like wp_query in pre_get_posts and wp), and some other goodies.

To log things manually, you can use:

browser()->log  ( $var, $label );
browser()->warn ( $var, $label );
browser()->info ( $var, $label );
browser()->error( $var, $label );

Also, commandas are chainable:

browser()->log( 'This is a log...' )->error( '...and this is an error' );

For example, to log all your main query's query_vars:

add_filter( 'pre_get_posts', 'log_wp_query', 10000 );

function log_wp_query( $query ) {
    if ( $query->is_main_query() )
        browser()->log( $query->query_vars, 'pre_get_posts' );

    return $query;
}

Debug Bar Console

Adds a PHP/MySQL console to the debug bar. Requires the Debug Bar plugin (v0.5 or later)....

Similar: 50%

Ataino Consolelog Output

This is Development support tool. it's easy to use. Place <?php $myout = new ataino_console(); $myout->log( $variable, $variable, more variable ); ?> in your templates. $variable is text,Array,Object. example output the Character. <?php $myout = new ataino_console(); .........

Similar: 40%

Query Monitor Extension : Checking Variable

Are you a WordPress Developer? Just simply check the values of your variables. You can use it either in Query Monitor result and independently. For more information, please visit my WordPress Developer's Reference GitHub repo....

Similar: 34%

Busted!

Saves you from asking "have you emptied your cache?". Features Safe to leave running on live sites. Only refreshes browser cache for a file if it has been modified. Resolves Content Delivery Network (CDN) issues. No need to purge CDN cache. Multisite compatible. "Just works" — no configuration ne.........

Similar: 25%

WpDevTool

WpDevTool implements many useful functions for WordPress Developers such as: Maintenance mode: Return a HTTP RESPONSE 503 (Service Temporary Unavailable) Under Maintenance landing page Debug bar: A simple bar which show number of query, timing and memory of current page Enable error display and lo.........

Similar: 25%

WordPress Logger

Display log messages from PHP in the browser console in Safari, Firefox (with firebug), and Opera (with the new Dragonfly debugging environment). Essential debugging tool for plugin and theme developers. You no longer have to use 'print_r' statements from PHP to figure out what is going on in the c.........

Similar: 19%

BugFu Console Debugger

BugFu lets you log from PHP directly to your Browser JavaScript Console - Meant as an aid to those practicing the ancient art of debugging - HOW TO CHECK IF BUGFU IS WORKING Open your browser console, if you see this header, BugFu is working properly ################################ #### BugFu Co.........

Similar: 11%

Debug Bar List Script & Style Dependencies

We all know that when we're add a script or style to WordPress, we should use wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer ) and wp_enqueue_style( $handle, $src, $deps, $ver, $media ) as in: function themeslug_enqueue_style() { wp_enqueue_style( 'core', 'style.css�.........

Similar: 10%

WP Viewer Log

Add widget into Dashboard for view the day errors, view full log in page this plugin, configure the wp-config.php (optional) and add link to view errors in admin bar (optional) Añade un widget en el escritorio para ver los errores del dia, ver el log completo en la página del plugin, configurar el .........

Similar: 10%

Automatic Facebook Cache Cleaner

Have you ever posted a link to Facebook only to realize afterwards that it's got a typo, and when you correct it, Facebook still shares the wrong stuff? This happens because the first post is cached, and most people have no clue how to solve it. The manual solution it is not even evident... it is do.........

Similar: 10%