如何在Wordpress中为一个类别中的所有POS添加上一个/下一个帖子链接?

时间:2015-06-24 19:20:52

标签: wordpress

对我轻松!我是一个菜鸟,在修改WP主题文件方面很慢。我已经创建了子主题。

如何在代码中说明"仅针对类别"博客"下的个别帖子显示上一个和下一个帖子链接。只有?这样每个帖子都标有" blog"将显示上一篇和下一篇文章。来自codex的代码看起来适用于所有类别。我只想把它放在一个类别上。

<?php previous_post_link('%link', 'Previous in category', TRUE); ?> 

Source link: Codex Wordpress

我已经尝试过插件,但没有任何更新可以让网站崩溃。

2 个答案:

答案 0 :(得分:1)

仅为该类别创建自定义模板。 https://codex.wordpress.org/Category_Templates - 您可以在该循环中包含您想要的任何内容。

答案 1 :(得分:1)

If you only need to display the next and previous post links on single posts which belongs to the blog category, you first need to know if the specific post belongs to the blog category or not. This can be easily done with the has_category check.

Something like will work on your single post page

if ( has_category( 'blog' ) ) {
    // ADD YOUR NEXT AND PREVIOUS POST LINKS HERE
}