The Trifecta of BlogWorld, New Media Expo & Las Vegas WordCamp 2009

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 title

if (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.

Related posts:

  1. Softduit Media Covering WordCamp:Las Vegas 2009
  2. Brett Bumeter Speaking at WordCamp RDU 2009
  3. Softduit Media at New Media Expo 2008
  4. Brett Bumeter Speaking at WordCamp Birmingham 2009
  5. Softduit Media’s Founder Featured on CBS 42 covering Birmingham, WordCamp