Posts Tagged ‘WordPress’

How to Make Sure I Will Uninstall Your Plugin

One of the first things you should do when building a WordPress theme/plugin is turn on WP_DEBUG in your wp-config.php file. Turning this on will make sure that you get notices for bad functions, deprecated items in your files…Every theme/site I build has this flag set in development (don’t set it on the production server).

As

Read article...

Posted in WordPress | Comments Off

WPMU Dev – Terrible Usability

As with much blogging this screencast is born of a rant about how WPMU Dev disrespects paying customers with their stupid WordPress admin notifications. After all the stuff that flies around about them plus the terrible usability and the long on promise short on delivery stuff regarding their plugins in their forums I’m not a

Read article...

Posted in Screencast, Usability, WordPress | 2 Comments »

WordPress – Plugins or Theme Functions.php

UPDATE: I’ve taken a second stab at the topic on WP Theme Tutorial.

While I’ve mentioned it in my presentations on Mobile WordPress development I’ve never really expanded on my thoughts on building WordPress features in the theme functions.php file or in a plugin.

What’s the Difference?

If you’re just starting out in WordPress you may not even

Read article...

Posted in WordPress | 6 Comments »

Building Quality WordPress Themes – Theme Check Plugin

We’re continuing on our topic of writing quality WordPress themes by looking at the Theme Check plugin. Theme check was originally developed to give people writing themes for the WordPress.org repository a way to check their themes for compatibility with the theme review requirements before they uploaded their theme for review.

If you’re not aware, when you

Read article...

Posted in WordPress | 2 Comments »

WordPress Taxonomy Images Plugin

Custom Taxonomies are awesome in WordPress but unfortunately most of the ‘solutions’ to various problems deal only with categories or tags still. Recently I had to add an image to my custom taxonomies and @_mfields again had a plugin that solved my problem.

Unfortunately there was one little ‘gotcha’ with the plugin which we’ll go over

Read article...

Posted in Screencast, WordPress | Comments Off

Using stripslashes() with Theme Options

Update: This is not the right way to do this. Use WordPress functions to sanitize data. April 27, 2012

While I might be showing a bit about my PHP naivety but while working with theme options recently I found that some of my content had a just before a single quote. Now I knew it

Read article...

Posted in WordPress | 2 Comments »

Conditional Tags for Custom Taxonomies in WordPress

WordPress 3.0 gave us custom taxonomies and since we’re using them regularly we’re also getting into conditional tags with our custom taxonomies.

Conditional tags for taxonomies differ from conditional tags for regular categories or tags. Below is an example of using a conditional tag for the standard ‘misc’ category found in WordPress.

[php] if( is_category( ‘misc’ ) )

Read article...

Posted in WordPress | 1 Comment »