Is there a way to draw the categories listing and highlight the current category being viewed?
In addition, it would be great to highlight the current category if a post or page that’s assigned to it is being viewed.
Any help much appreciated…
Here’s my current code (I’m excluding the default “uncategorized” category)…
echo "<div class="menu top"><ul>";
$cat_args = array('orderby' => 'name', 'show_count' => $c, 'hierarchical' => $h);
$cat_args['title_li'] = '';
$cat_args['exclude_tree'] = 1;
wp_list_categories(apply_filters('widget_categories_args', $cat_args));
echo "</ul></div>";