2010-08-29 210 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