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
2010-08-23 17:13:48
That doesn't meet the "any calls to wp_list_categories()" requirement.
Adam Backstrom
2010-08-23 17:23:07