Tag Archives: Plugins

WP-Debug

WP-Debug Screenshot

WP-Debug Screenshot

WebDevStudio has created WP-Devel which uses the foundation of WP-Debug and has added enhancements. I’m no longer updating WP-Debug but instead pointing to their work.

I was using my StumbleUpon, and I came across Krumo which is a PHP debugging application. It allows you to see the content of server variables, cookies, and a lot more including specified variables such as $wp_query! After a short while I had a running WordPress plugin which should be an asset for WordPress developers.

Installation

  1. Download, upload, activate.

That’s it! As long as you’re logged in you’ll see the expandable menus in the footer of your page (nothing is shown to your visitors). It does rely on having the wp_footer() call in your theme so ensure that’s there if you don’t see anything.

Configuration

Krumo comes with some default styles: default, blue, green, orange, and scablon.com. It is set to default which works the best with the default WordPress theme. If you would like to change it you can go to the “krumo” folder of the plugin and edit the “selected” value in the krumo.ini file (you might have to adjust the styles depending on how CSS inheritance from your theme throws things off).

[skin]
selected = "default"

I have most of the Krumo API in the plugin, but you can add/remove at your lesiure. If you want to check a variable then simply add to lines 14, but you can see on line 14 that I had to declare WordPress variables as global, because the content is outside the loop. Simply add a global variable to line 12 if needed.

global $user_ID, $wp_query, $wp;
if ( $user_ID ) {
include ('krumo/class.krumo.php');

Be sure to check the documentation for their API if need be.


Persistent Styles Plugin For WPMU

I was contacted by someone named “Ovidiu” about branching my WordPress styles plugin for WPMU (WordPress Multi-User), and he has published it in the WPMU plugins directory. His announcement is also listed on the WPMU forum for technical support. All questions regarding the WPMU should be directed to that person.

I added it as a branch to my Subversion slot in the official WordPress plugin directory.

Persistent Styles Plugin

Have you ever updated your theme by replacing, or simply overwriting your old theme files? Well, when we edit themes we tend to add many custom styles that are supra-theme. Maybe there are styles for a plugin (such as my Post Information Plugin) that you want there regardless of what theme you have selected. Well, I have the fix for you.

  1. Download the plugin
  2. Activate
  3. Then your styles under Presentation » Persistent Styles.

I should warn you that the style sheet will be printed after your primary sheet. I would advise on only adding non theme dependent styles, because it will throw off your CSS inheritance.

Have fun!