Hello,
I am trying to get the code below to highlight the menu name of the page the user is on. There are five pages total--Home, About, TV Show, Pie Parties, Blog, and Contact. How do I get this to work?
This is the code right now:
<div id="wrap">
<!-- Start Page -->
<div id="page">
<!-- Header -->
<div class="header">
<a href="<?php bloginfo('url') ?>">
<img src="<?php echo get_option('pacifica_custom_logo'); ?>" alt="<?php bloginfo('name'); ?>" /></a>
</div>
<!-- Start Navigation -->
<div id="navwrap"><div class="navigation">
<div class="border">
<ul id="nav">
<li class="first">
<a href="<?php bloginfo('url'); ?>">Home</a></li>
<?php wp_list_pages('title_li=');?>
<?php if (get_option('pacifica_subscribe') == 'yes' ) {?>
<?php } ?>
</ul>
<?php get_search_form(); ?>
<div class="clear"></div>
</div>
</div></div>
<!-- Stop Navigation -->
The website is: http://theworldneedsmorepie.com/
THANK YOU SO MUCH IN ADVANCE!!!