The Trifecta of BlogWorld, New Media Expo & Las Vegas WordCamp 2009
Originally posted in full at Softduit Media.
Permalink
Last weekend I ventured back to BlogWorld & the New Media Expo and Las Vegas WordCamp. The great thing is that all three conferences were consolidated in the Las Vegas Convention Center. I closed out WordCamp with a Session on How to Design a WordPress Theme in Minutes. The video from the event is not yet available, but the slides are below:
This was an expanded version of the ‘Intro’ level presentation that I provided a few weeks ago at WordCamp Birmingham.
The big difference is that I demonstrated how to use multiple themes in a single WordPress configuration. Multiple themes that anyone could design and later iterate modifications themselves. I also highlighted a few of the techniques that I utilized to build our strategic partner’s site at Grass Shack Events & Media.
Here is the basic code that I utilized to create and call a default header as well as alternate headers based on an if then else selection:
<?php
//
// example of using header file based on pages
// note that you can either use page ID, Page Name or Page Slug
//
// this one uses page titleif (is_page()){
include(TEMPLATEPATH.’/header-business.php’);
}
else {
include(TEMPLATEPATH.’/header-default.php’);
}
?>
This month I will also create additional step by step video tutorials to share with people that were unable to attend this session. Alternately, if you would like me to speak at a conference or event in your area, please contact me to discuss availability.
Note: Cross posted from Softduit Media.
Permalink
- WordCamp Birmingham 2009 Presentation Slides – Design Your First WordPress Theme in Minutes Brett Bumeter is presenting today at WordCamp Birmingham teaching people how to design their first theme in minutes. Note: Cross posted from Softduit Media. Permalink...
- How to Design a WordPress Theme – Unconference WordCamp Boston After catching up on my sleep after traveling back all night from Boston from one of the largest wordcamps that I have attended to...
- Podcast and New Media Expo Trip Preparation Later this week I will be traveling to Ontario, California for the 2007 Podcast and New Media Expo. It used to be called the Podcast...
- Two Very Cool Things Coming to WordPress in 2009: Handbook and Plugin Compatibility I’m sitting at a WordCamp in Las Vegas today listening to the keynote address by Matt Mullenberg, the founder of WordPress (the software that powers...
















































