Need Help with PHP Conditional Statement?

  • Thread starter Thread starter TransPersonal
  • Start date Start date
T

TransPersonal

Guest
I have a wordpress theme that automatically makes all my site categories appear at the top as navigation. This is something I want except I don't want the category "uncategorized" to also appear with the rest. Is there a way I can keep all the other categories in the navigation while excluding just the "uncategorized" one.

The php coding that makes all categories appear in the navigation area is this:

<?php wp_list_categories('sort_column=name&tit

le_li=&depth=3'); ?>
 
Back
Top