How to Hide the Menu List in inove Theme header
-
Hi,
I need to remove some of links that are diplayed as list items on the Header. In other words, I don’t want all the pages to appear on the
top menu as links.I believe this is the part of coe that needs to be modified in Header.php. I have only one ‘Category’, and can’t get it to work. For example, if I have 7 ‘Pages’ on the side navigation, all 7 pages appear on the top menu list as links.
Thanks.
— navigation START –>
<div id=”navigation”>
<ul id=”menus”>
<li class=”<?php echo($home_menu); ?>”>” href=”<?php echo get_settings(‘home’); ?>/”><?php _e(‘Home’, ‘inove’); ?>
<?php
if($options[‘menu_type’] == ‘categories’) {
wp_list_categories(‘depth=2&title_li=0&orderby=name&show_count=0’);
} else {
wp_list_pages(‘depth=2&title_li=0&sort_column=menu_order’);
}
?>
- The topic ‘How to Hide the Menu List in inove Theme header’ is closed to new replies.