View Single Post
  #1 (permalink)  
Old 04-14-2008, 07:59 AM
Noobkiller's Avatar
Noobkiller Noobkiller is offline
Established
 
Join Date: Mar 2008
Posts: 74
Noobkiller is on a distinguished road
Angry Need Help with nav bar

I want to add certain categories to my nav bar, but I don't know how and the nav lists all of my pages. I know it has to do with my category id, but I'm clueless through the rest.I'm changing my blog to use the Not So Fresh theme. Here's the code

PHP Code:
<div id="navbar">
        <ul class="menu">
            <li class="<?php if ( is_home() ) { ?>current_page_item<?php } else { ?>page_item<?php ?>"><a href="<?php echo get_settings('home'); ?>"><?php _e('Home'); ?></a></li>
            <?php wp_list_pages('sort_column=id&depth=1&title_li='); ?>
            <?php wp_register('<li>','</li>'); ?>
        </ul>
Reply With Quote