我想你说的是单篇文章,不是档案-get_next_posts_link
获取下一个存档页,get_next_post_link
获取当前帖子旁边的帖子(请注意复数差异)。
如果是这样,那么下一个/上一个后期链接函数只是get_adjacent_post()
:
<?php if ( $the_query->max_num_pages > 1 ) : ?>
<nav class="prev-next-posts">
<?php if ( $post = get_adjacent_post( false /* In same term? */, \'\' /* Excluded terms */, true /* Previous */ ) ) : setup_postdata( $post ) ?>
<div class="prev-posts-link">
<a href="<?php the_permalink() ?>"><?php the_title() ?></a>
<?php the_excerpt() ?>
</div>
<?php endif ?>
<?php if ( $post = get_adjacent_post( false, \'\', false ) ) : setup_postdata( $post ) ?>
<div class="next-posts-link">
<a href="<?php the_permalink() ?>"><?php the_title() ?></a>
<?php the_excerpt() ?>
</div>
<?php endif ?>
<?php wp_reset_postdata() ?>
</nav>
<?php endif ?>