• Resolved goldmember

    (@goldmember)


    my site is here: http://checkoutmywatch.com/wordpress/

    i changed my reading settings so that my blog appears on a page other than my ‘Home’ page. And since ‘Home’ doesn’t appear anywhere in my Edit-Pages, I created a Pseudo-Home static page, which I can edit.

    so now i want to remove ‘Home’ from the top-nav bar since there is no ‘Home’ page.

    I’m guessing the code I need to edit is the code below, from my header.php. I just don’t know what to do to it to get the ‘Home’ tab to go away.

    <div id="top-menu">
    		<ul>
    			<li class="<?php if (is_page('home') || is_home()) { ;?>page_item current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>/" title="Home">Home</a></li>
    			<?php wp_list_pages('sort_column=menu_order&depth=1&title_li=');?>
    		</ul>
    	</div>

    please advise. thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • you can delete this:

    <li class="<?php if (is_page('home') || is_home()) { ;?>page_item current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>/" title="Home">Home</a></li>

    nothing more – nothing less 😉

    Thread Starter goldmember

    (@goldmember)

    bingo. thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing Missing ‘Home’ page from top nav bar’ is closed to new replies.