• I’ve got a strange thing happening. I set up my Home page per the documentaion, but I am getting the “Home” menu item showing up twice in my navigation bar. When I view my Pages, “Home” is only showing up once…so…how do I get rid of the extra “Home”. Both take me to the Home page, by the way.
    Thanks!
    Lori

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter lcorbett

    (@lcorbett)

    Nevermind….I found the issue it was the line in bold….it needs to be taken out:

    <div id="headerwrap">
      <div id="headerbg">
        <div id="header">
          <h1><a href="<?php echo get_settings('home'); ?>/">
            <?php bloginfo('name'); ?>
            </a></h1>
          <p class="tagline">
            <?php bloginfo('description'); ?>
          </p>
          <div class="Menu">
    
            <div class="Menuright">
              <ul>
                <ul>
                  <strong><li><a href="<?php echo get_option('home'); ?>/">Home</a></li></strong>
                  <li>
                    <?php wp_list_pages('title_li=&depth=1'); ?>
                  </li>
                </ul>
              </ul>
            </div>
          </div>
    Thread Starter lcorbett

    (@lcorbett)

    Dang…THIS line (didn’t format correctly when I posted earlier):
    <strong><li><a href="<?php echo get_option('home'); ?>/">Home</a></li></strong>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘“Home” showing up twice in my nav bar’ is closed to new replies.