My blog's main menu is made of the categories, displayed via the wp_list_categories function.
If i click on one of the categories, the current category is highlighted in the category menu, and the list of articles inside that category are listed. Everything is fine.
But if i then click on one article, the Category menu does not show the current category anymore. Anyone knows how i could fix that?
Here is the code i use to generate the menu in the sidebar.
<?php
wp_list_categories('child_of=55&sort_column=menu_order&sort_order=asc&title_li=');
?>