我拿不到<?php next_posts_link(); ?>
在第一页(website.com/news)的自定义帖子循环中工作。有趣的是<?php previous_posts_link(); ?>
是否在第二页(website.com/news/page/2/)上工作
这是我的问题:
<div class="col-md-12">
<h2>News</h2>
<?php
$paged = ( get_query_var( \'paged\' ) ) ? get_query_var( \'paged\' ) : 1;
$the_query = new WP_Query( \'posts_per_page=6&paged=\' . $paged );
?>
<div class="row">
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<div class="col-md-4">
<div class="card">
<?php the_post_thumbnail(); ?>
<div class="card-body">
<h4><a class="newslink" href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
<p class="card-text">
<?php
the_excerpt(40,the_date(\'j F, Y\',\'\',\'<br>\'));?>
</p>
</div>
</div>
</div>
<?php
endwhile;
?>
<?php next_posts_link(); ?>
<?php previous_posts_link(); ?>
<?php wp_reset_query(); ?>
</div>
就我而言,我使用的是全球风险值
$wp_query
所以我不知道为什么第一页不起作用。