I am designing a WordPress theme and am currently building the nav for my homepage. The code number 1 allows me to create pages using the custom menu penal. I am using code number 2 to create a link to the current page which it index so bloginfo( url ); would give me the URL to the site which would be the home page, at least that is my under standing. I could use a custom link to add a link to the menu and link to the home page but I would like the theme to have a link to the home page that is native or is in the menu at the on set. Any thoughts on this problem would be greatly appreciated.
<!--code number 1-->
<ul id="menu">
<?php wp_list_pages( title_li=&depth=1 ); ?>
</ul>
<!--code number 2-->
<ul id="menu">
<li><a href="<?php bloginfo( url ); ?>" title="Home">Home</a></li>
<?php wp_list_pages( title_li=&depth=1 ); ?>
</ul>