Client: CommunityLivingDurhamNorth.ca
WordPress Theme Ordered: 2009-03-23
WordPress Theme Completed: 2009-03-24
The purpose of Community Living Durham North is to support people who have an intellectual disability to live, work and enjoy life in their own community.
Tags: 3 Column, Custom Wordpress Theme, Fixed Width, Widget Ready
So I needed a function for which would check whether page has subpages/childrens or not. So I came up with this: Just put this code in functions.php: function post_have_children($id){ $children = get_pages(‘child_of=’.$id); if(count($children) == 0){ return false; } else{ return true; } } Ussage: <?php post_have_children(‘pageID’); ?> pageID – the id of the page you [...]
During my work as a wordpress theme coder I came across that there are request for a function on how to limit the post titles.
Wordpress hosting has become a top running competitive keyword for many hosting providers, along with shared hosting and dedicated hosting. As more and more…
First, what you need to do, if you have never worked with wordpress before, is to find a template for wordpress themes, this will make your live a lot easier.
Creating a WordPress theme from scratch is not hard. I’ll hold your hand through it.
Leave a reply