Exclusive5
Active Member
Hello on my Word Press site none of the categories are showing up in the header they they show up in the side bar but not the header any ideas on fixing?
thats the pages thats displayed in header and not categories..... so i suppose ur theme does not support categories display in header..
<ul class="sf-menu">
<li <?php if (is_home()) { echo 'class="current_page_item"'; } ?>><a href="<?php echo get_option('home'); ?>/" title="Home">Home</a></li>
<li><a href="#" title="Categories">Categories</a>
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
</li>
<?php wp_list_pages('title_li='); ?>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="Subscribe">Subscribe</a></li>
<?php wp_register('<li>','</li>'); ?>
</ul>
<ul id="nav">
<li <?php if(is_home()) { echo ' class="current-cat" '; } ?>><a href="<?php bloginfo('url'); ?>">Home</a></li>
<?php wp_list_categories('depth=3&exclude=1&hide_empty=0&orderby=name&show_count=0&use_desc_for_title=1&title_li='); ?>
</ul>
<?php
}
?>