Just remove the optioncount=1 argument from the wp_list_cats tag and that should fix it up!
Good luck,
Michael.
Ok, where do I find the wp_list_cats tag? Is that in my edit themes section of my wordpress? I’m sorry, I’m very new at this.
Yes, I’m guessing the list you’re referring to is in the sidebar, so edit the sidebar.php file for your theme, just find the wp_list_cats tag, example below: wp_list_cats('sort_column=name&children=0&optioncount=1&hide_empty=1');
And remove the optioncount=1 argument, like this:
wp_list_cats('sort_column=name&children=0&hide_empty=1');
That should fix it up for you.
Cheers,
Michael.
OK, I’m pretty sure this is what you’re talking about but I don’t see what you wrote. Can you tell anything by this?:
<?php list_cats(0, ‘all’, ‘name’, ‘asc’, ‘asc’, 1, 0, 1, 1, 1, 1, 0,”,”,”,”,”); ?>
It’s ok, I did it.
<?php list_cats(0, ‘all’, ‘name’, ‘asc’, ‘asc’, 1, 0, 1, 1, 1, 1, 0,”,”,”,”,”); ?>
It was the 3rd set of 1/0’s that I had to change to a 0.
Thanks!