这似乎应该很简单,但我无法弄清楚如何在没有链接的情况下在WordPress中获取下一个和之前的帖子。
在手抄本上,next_post_link()
和previous_post_link()
似乎没有参数可以让你在没有链接的情况下获得标题,我在网上找不到任何变通办法。
答案 0 :(得分:1)
使用get_adjacent_post
找出了一些东西。不确定这是否是正确的方法,但它有效。
<?php
$prev_post = get_adjacent_post('', '', true);
$next_post = get_adjacent_post('', '', false);
?>
<p><?php echo $prev_post->post_title; ?></p>
<p><?php echo $next_post->post_title; ?></p>