Solution is as of WordPress v2.5.1
WordPress is one of the OpenSource software sector’s best programs. However one of the problems one might have with it when trying to configure it is having two Home pages. This occurs when you assign your posts and home page to specific static pages instead of the default, autogenerated “Home”. What you are left with is an extra, uneditable, undeletable “Home” page. To rid yourself of this you simply pop open your current theme’s Header.php file and delete or comment out the code that creates that first tab. Code below.
<div id="nav">
<ul class="nav">
<li class="first">
<!--
<a href="<?php bloginfo('url'); ?>">Home</a>
-->
</li>
<?php wp_list_pages('title_li='); ?>
</ul>
</div>


Sun, Jul 20, 2008
Wordpress