Re: Categories
You need to tell Wordpress that you want to show catagories that do not have posts yet. Open your
index.php file and find this line.
Code:
<?wp_list_categories('show_count=0&title_li=&depth=1'); ?>
Change it to this if you are using v2.8 of the theme:
Code:
<?php wp_list_categories('show_count=0&title_li=&depth=1&hide_empty=0'); ?>
If you are using 2.9 use:
Code:
<?php wp_list_categories('show_count=0&hide_empty=true&orderby=name&order=asc&title_li='); ?>
Eric is best known in the forum for his in depth tutorials. He started in design 4 years ago and then discovered WordPress and has been coding and hacking themes and plugins ever since. He's quite helpful if you have any questions for him in the forum. Eric also makes his own WordPress themes and plugins and provides ClassiPress consulting on the side. David Cowgill - (Owner of Classipress)