Client: footballistics.com
WordPress Theme Ordered: 2008-09-10
WordPress Theme Completed: 2008-09-15
A web blog dedicated for NFL/fantasy football. There you can find strategies and rankings.
Tags: Football
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