我有两个不同的循环。主页上的默认值,但存档页面上的二次循环。它抓住了所有的内容,就像这样:
<?php // WP_Query arguments
$args = array (
\'posts_per_page\' => \'3\'
);
// The Query
$archiveQuery = new WP_Query( $args );
// The Loop
if ( $archiveQuery->have_posts() ) {
while ( $archiveQuery->have_posts() ) {
$archiveQuery->the_post(); ?>
<div class="post">
<a href="<?php the_permalink() ?>">
<?php first_item(); ?> </a>
然而,当我包括
posts_nav_link();
, 它没有出现。这是因为它是一个静态页面吗?我用它来制作一个无限卷轴。