The template I am using is techified and I would like to change the navbar to link directly to the post, not the category as it does now.

Here is the code for header.php. I'm assuming this would be where the change would be made.

<div id="navigation_area">
<ul id="nav">
<?php wp_list_categories('exclude=1&hide_empty=0&orderby=name&show_count=0&use_desc_for_title=1&title_li='); ?>
<li><a href="<?php echo get_option('home'); ?>">Home</a></li>
</ul>
</div>
link|improve this question

79% accept rate
feedback

migrated from superuser.com Jan 15 '10 at 9:50

This question came from our site for computer enthusiasts and power users.

1 Answer

Would using <?php wp_list_pages( $args ); ?> instead of list categories work?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.