Horizontal Menu Help
-
I am hoping someone can help me with this. I am trying to edit a horizontal menu. It currently has one entry for each of my pages. I also would like to add an menu link to display a specific category and another to link to a URL.
Every time I add an href, either it doesn’t display or it places the link above the horizontal menu messing it all up. I must be doing something stupid. Here is my menu.php. Any help much appreciated!
<div class="menu"> <?php if(function_exists('wp_page_menu')) : ?> <?php wp_page_menu ('show_home=1&depth=1&title_li='); ?> <?php else : ?> <ul> <li><a href="<?php echo get_settings('home'); ?>">Home</a></li> <?php wp_list_pages('depth=1&title_li='); ?> </ul> <?php endif; ?> </div>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Horizontal Menu Help’ is closed to new replies.