WordPress Question (Add A Nav Bar Link)

ams007

Regular Member
Joined
Apr 18, 2008
Messages
200
Reaction score
43
Hi,

I want to add a link to nav bar. Header.php nav bar code:

<div id="navigation_bar">
<ul>
<?php wp_list_pages('include=11,2,13&title_li=' ); ?>
</ul>

Link is not to a page per se, it's to a post category:

ivyfam*ilyhealthup*dates dot com/category/general-health-updates

How do I add the link into the nav bar?

More info: I'm using wordpress for a content site which also has a blog. I made pages for all the content. Trying to incorporate blog by linking to the above link in the nav bar. Is there a better way?

Any help or suggestions would be appreciated.
 
Last edited:
maybe this is what you want to do.

Code:
<div id="navigation_bar">
<ul>
<li><?php wp_list_pages('include=11,2,13&title_li=' ); ?></li>
<li><a href="YOUR LINK HERE">your text here</a></li>
</ul>

im really not sure what you want help with please briefly describe what do you want to do.
 
Like fiber optic said, though the completecode will be.
Code:
<div id="navigation_bar">
<ul>
<li><?php wp_list_pages('include=11,2,13&title_li=' ); ?></li>
<li><a href="<?php bloginfo('url'); ?>/category/general-health-updates">General Health Updates</a></li>
</ul>
 
fyberO that is exactly what I needed.

THANKS!!!
 
you are welcome just look me up whenever you need such help. :tee:
 
Back
Top