views:

12

answers:

1

I have some utility categories that are only used by my theme. How can I make sure that any call to categories excludes the child categories under "uncategorized"?

A: 

Try something along the lines of:

wp_list_categories(array(
    "exclude" => get_cat_ID("Uncategorized")
));
pp19dd
That doesn't meet the "any calls to wp_list_categories()" requirement.
Adam Backstrom