Learning the Niche of WordPres Theme Setup & Customization – Presentation from Orlando WordPress Meetup

Today I gave a really cool talk on what skills one needs to install and customize WordPress themes.  I argue that this is a niche in the WordPress ecology and of itself and it's possible at different levels from site owners, to account managers, to developers. //speakerdeck.com/assets/embed.js We cover some examples of how to customize … Continue reading Learning the Niche of WordPres Theme Setup & Customization – Presentation from Orlando WordPress Meetup

Great Video on How Automattic Approaches Theme Development

Check out this great video from Philip Arthur Moore http://s0.videopress.com/player.swf?v=1.03 In the video he talks about a few major approaches to creating WordPress themes: Parent and child themes Theme frameworks Starter themes From scratch You can also find a nice write up he did of the content over on the Codepoet blog. He also has … Continue reading Great Video on How Automattic Approaches Theme Development

Create a Function to Create WordPress Widgets

I've taken to the practice of doing something like this whenever I need to create multiple widgets in a theme that all have the same basic parameters. function create_widget($name, $id, $description) { register_sidebar(array( 'name' => __( $name ), 'id' => $id, 'description' => __( $description ), 'before_widget' => ' ', 'after_widget' => ' ', 'before_title' … Continue reading Create a Function to Create WordPress Widgets

10 Simple Steps to Migrate WordPress from Local to Live Server

When you start to develop a lot of WordPress themes, you will find your natural rhythm moving sites from local development to live testing or production environments. Here is a simple 10 step process for doing just that. The process works even if the sites have different URLs. Backup your WordPress site using WordPressBackUp or … Continue reading 10 Simple Steps to Migrate WordPress from Local to Live Server