A Wordpress site about WordPress sites…
phone:   229.798.4330
skype:   doc5.com
The personal blog of a WordPress developer who is ready and available to develop your WordPress Blog.

Custom WordPress Theme Design

Browse the Archives  You are Browsing the January 2007 Archive:

WordPress setup done right

Over the past few years I have done literally hundreds of WordPress setups and installations, it’s one of the only things in life that I am positive that I am truly competent in…
So it should be no surprise that I provide it as a professional service - I can set up your WordPress installation [...]


New WordPress Projects now 30 days out

Just a heads up - I am not starting any new custom Wordpress theme design projects for 30 days. I have unintentionally overbooked myself a little and the turn around time just increases…
So if you want a custom WordPress theme and and can wait 30 days, feel free to contact me. If you [...]


WordPress Clients - My Cell Phone is Down

Hey Now, if you are a current or potential custom WordPress theme client and you can’t get me on the phone it is because my damn palm treo has died! I am doing my best to get this cleared up, but until then feel free to call 229.299.4420 during normal east coast business hours.
That [...]


Time For A Smile WordPress Theme

The Smile Guy from over at Time for a Smile recently hired me to create him a fun, green, WordPress theme, and this was the result. I really like the way it turned out and so did Paul:
Thanks it is very nice and web 2.0ish. I like it a lot, you have been [...]


Show only SubPages in WordPress

If you find yourself working on a WordPress theme and come to the conclusion that you want to only show a WordPress page’s subpages ( a very CMS type of thing to do ) here is a little code that I wanted to share with you:

<?php

$children = wp_list_pages(’title_li=&child_of=’.$post->ID.’&echo=0′);

if ($children) { ?>

<ul>

<?php echo $children; ?>

</ul>

<?php } [...]