我在WordPress小部件中有这个工作代码:
<div class="portfolio-links" >
<span style="float:left"><?php next_post_link('%link'); ?></span>
<span style="float:right"><?php previous_post_link( '%link'); ?></span>
</div>
现在我试图将链接限制为仅限于相同的投资组合类别
&LT; Prev.Cat.Post.Title1 __________ Next.Cat.Post.Title2&gt;
我尝试使用<?php next_post_link( '%link', 'Next post in category', TRUE ); ?>
,但我没有找到添加帖子标题的方法。
我也试过<?php next_post_link( '%link', '%title', TRUE ); ?>
但是由于某种原因,我留下了一个空字符串。
另一种方法是使用类型的代码:
if(portofilio_category = 'my-category'){
...
}
只有我不知道该怎么做。 这两种解决方案对我都有用。
有用的参考:https://codex.wordpress.org/Function_Reference/next_post_link
非常感谢
答案 0 :(得分:0)
link:默认'%title'。
所以这对你有用:
<?php next_post_link( '%link', '%title', TRUE ); ?>