2010-08-29 159 views
0

我在Wordpress中有一个名为News的类别,并希望在查看故事时链接到下一个新闻页面。链接类别帖子(Wordpress)

这是现有的代码,但会链接到所有帖子,我应该添加什么才能使其只在新闻类别中发布?

<div id="page-navi"> 
<div class="button previous"><?php previous_post_link('%link') ?></div> 
<div class="button next"><?php next_post_link('%link') ?></div> 
    </div><!-- page-navi --> 

非常感谢

回答

1

WordPress documentation

previous_post_link($format, $link, $in_same_cat = false, $excluded_categories = '') 

所以只需添加true作为第三个参数:

<div id="page-navi"> 
<div class="button previous"><? previous_post_link('%link', 'Previous in category', true) ?></div> 
<div class="button next"><?php next_post_link('%link', 'Next in category', true) ?></div> 
    </div><!-- page-navi --> 
+0

甜行之有效,谢谢:) – Rob 2010-08-29 16:51:06

相关问题