How do I remove the first "home" button ? I could not edit it, remove it or put content in it. I can't find anything about it anywhere.
Thoughts ? I want to just keep my Home Page that I created....
Thanks
How do I remove the first "home" button ? I could not edit it, remove it or put content in it. I can't find anything about it anywhere.
Thoughts ? I want to just keep my Home Page that I created....
Thanks
You need to post a link to your page so people can see what you are asking about.
Sorry.....duh :)
In header.php - change
<ul>
<li class="page_item <?php if ( is_home() ) { ?>current_page_item<?php } ?>"><a href="<?php bloginfo('url'); ?>">home</a></li>
<?php wp_list_pages('title_li=&depth=1'); ?>
</ul>
to
<ul>
<?php wp_list_pages('title_li=&depth=1'); ?>
</ul>Awesome, thanks !
Thanks mercime! That post helped me out too!! It worked like a charm in 2.7--(although the code was slightly different)
Thanks also. I've done this in several sites and works great.
this code is not inside my header.php why?
This topic has been closed to new replies.