我不会使用get\\u posts()在单曲上设置循环。php页面。我只会使用正常的正确循环。请查看codex中关于主题开发的页面
这里是一个单一的例子。将按预期工作的php
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php
// Start the Loop.
while ( have_posts() ) : the_post(); ?>
<?php
get_template_part( \'content\', get_post_format() );
// Previous/next post navigation.
previous_post_link( \'%link\', \'Prev post in category\', true );
next_post_link( \'%link\', \'Next post in category\', true );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
endwhile;
?>
</div><!-- #content -->
</div><!-- #primary -->
正如另一个答案所指出的,去阅读一下如何使用next_post_link
以及previous_post_link