I have a WordPress website with a menu similar to this one: Yahoo news, so basically:
- a horizontal menu with two levels, the first with main categories the second with sub-categories (in the "Home" menu item, the subcategory is the page "about us".
- I am using the build-in Menu of WordPress
The problem I have is with the pagination and also with the search form:
When I am in the Home Page and I click any pagination number, the subcategories of "Home" menu item disappears, and most importantly, the "Home" menu item is no longer highlighted.
When I search something, again the same issue, the "Home" is no longer highlighted, and there is no subcategory under "Home" menu item.
<ul id="menu" class="menu"> <li id="menu-item-1252" class="menu-item menu-item-type-custom current-menu-item current_page_item menu-item-home menu-item-1252"><a href="#">Home</a><ul class="sub-menu"><li id="menu-item-1219" class="menu-item menu-item-type-post_type menu-item-1219"><a href="#">About Us</a></li></ul></li> </ul>
– Microcipcip<ul id="menu" class="menu"> <li id="menu-item-1252" class="menu-item menu-item-type-custom menu-item-home menu-item-1252"><a href="#">Home</a><ul class="sub-menu"><li id="menu-item-1219" class="menu-item menu-item-type-post_type menu-item-1219"><a href="#">About Us</a></li></ul></li> </ul>
– Microcipcip