开发者

Change wordpress navbar to link straight to post or page

开发者 https://www.devze.com 2022-12-16 23:15 出处:网络
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.

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 wou开发者_StackOverflowld 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>


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

0

精彩评论

暂无评论...
验证码 换一张
取 消