How can I filter child categories of "uncategorized" out of the loop?
I have some utility categories that are only used by my theme. How can I make sure that any call to categories exclud开发者_StackOverflowes the child categories under "uncategorized"?
Try something along the lines of:
wp_list_categories(array( "exclude" => get_cat_ID("Uncategorized") ));
精彩评论