January 7, 2010 – 4:51 pm
Since I always seem to lose track of the ticket where Ozz explains how to do this, putting it here for posterity. When using wp_enqueue_style you may need to use CSS conditional comments to work around IE bugs. Here's the code to add a style for IE 7 named ie7.css located in the root of the theme:
wp_enqueue_style
(
'ie7-style',
get_template_directory_uri
() .
'/ie7.css'
);
global $wp_styles;
$wp_styles->
add_data( 'ie7-style',
'conditional',
'lte IE 7′ );
December 16, 2009 – 12:02 pm
Since my talk at WordCamp Orlando on "You're Doing it Wrong" wasn't a total failure was a resounding success, I'm happy to announce that I'll be giving a similar talk at WordCamp Atlanta. If you saw this talk in Orlando and are going to WordCamp Atlanta, don't worry. I'll have new examples, better jokes, and a slightly different format for the slides to make them more useful as a reference.
I'll cover some common examples seen in plugins, themes, and tutorials that are either the "wrong" way to do it, not the "WordPress way", or just obsolete due to bug fixes and feature additions in WordPress. I'll also talk about how WordPress coding, upgrading, and community all combine into doing things the "right" way. This is targeted toward intermediate to advanced plugin developers, however, beginning developers may be interested as well.
I talked to quite a few Orlando area people at WordCamp Orlando that were interested in WordCamp Atlanta, so if that's you, check out the post on the Orlando WordPress blog if you want to discuss it or need to find someone to carpool/room with.
December 6, 2009 – 9:20 pm
I've posted the slides for my WordCamp Orlando presentation "You're Doing it Wrong" on Slideshare.
Thanks to everyone who attended and for the feedback you gave me.
November 19, 2009 – 12:02 pm
Even if you don't think that's a good idea, be sure to check out the list of speakers and check out the sessions announced so far. What are you waiting for? Register now. I guarantee it will be the best $15 you spend on a WordCamp in Orlando this year.

Official site at http://wordcamporlando.org/, Twitter @wordcamporlando, and more info here. I'll second everything Nick says in that post. I'm definitely looking forward to this.