Hey,
I'm looking for a plug-in that can hide certain categories from my sidebar and top navigation bar.
I know you can edit themes to exclude them but that's not an option because I'm using WPMU.
so are there such plug-ins ?
Or is there any hook that can do this.
I currently have:
function exclude_category_nav($query) {
echo $query;
$query .= " AND cat_id != 6";
return $query;
}
add_filter('list_cats_exclusions', 'exclude_category_nav');
but that doesnt work
Thanks, Xeross