thanks for taking a look at my post. for some reason my "home" icon in my navigation header link section is not linking back to the "home" page of my site. here is the navigation.php code that I'm working with:
- Code: Select all
<div id="branding">
<?php include ('searchform.php'); ?>
<div id="image">
</div><!-- end imagelogo -->
</div><!-- end branding -->
<div id="page-navigation" class="clearfix">
<a href="<?php bloginfo('daily_picks'); ?>" class="rss" title="daily picks">daily picks</a>
<ul id="nav">
<li<? echo (is_home())? ' class="current_page_item"' : ''; ?>><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></li>
<?php wp_list_pages('title_li=&depth=1'); ?>
</ul>
</div><!-- end page-navigation -->
For example, when going to the "about" page on my site and then try to the home page, the hyperlink shows up as the following...
www.testsite.staging.com/about/block_club
...instead of just www.testsite.staging.com
Any help would be appreciated.
Thanks,
Steve

