所以我想要做的是有一个 wordpress 内容区域,当点击链接时会显示下一篇文章。我有这个作为我的帖子查询
<?php
$args = array();
$lastposts = get_posts( $args );
foreach ( $lastposts as $post )
{
setup_postdata( $post );
$posts[] += $post->ID;
}
$current = array_search(get_the_ID(), $posts);
$prevID = $posts[$current-1];
$nextID = $posts[$current+1];
?>
然后我把它作为分页链接
<?php if (!empty($prevID)) { ?>
<li class="previous">
<a class="panel" href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">← Older</a>
</li>
<?php }
if (!empty($nextID)) { ?>
<li class="next">
<a class="panel" href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Newer →</a>
</li>
<?php } ?>
我不知道如何告诉帖子的内容(the_permalink、the_content)来显示下一个帖子。我的目标是添加某种过渡,但这并不像出现下一篇文章那么重要。任何想法,甚至可能吗?