WordPress Blog

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

WP Seek WordPress Search Engine API

I was happy to stumble across the site wpseek.com, which works as an all things WordPress search engine. What really impressed me though is their API, which let's you do things like get specs on a specific function or a list of all WP functions. For example using the following URL http://api.wpseek.com/?method=wordpress.getfunction&s=the_title will return a … Continue reading WP Seek WordPress Search Engine API

Really Cool Media Gallery Plugin

EDIT: This plugin does not seem to still be available The Complete Gallery Manager for WordPress Plugin has some really cool options for displaying media galleries in WordPress, like customizable Masonry galleries. It's a premium plugin and you can find it on CodeCanyon. I haven't used it yet, but it looks really cool!

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

WordPress Plugin to Make Site Private During Online Development

Big thanks to Kate Mag for the Private Only plugin, which allows you to password protect a whole site (like this). If you use a live development server during your WordPress development, you should check out this plugin. It's a few steps better than just unchecking the setting that says allows search engines to find … Continue reading WordPress Plugin to Make Site Private During Online Development