感谢您抽出宝贵时间查看此内容。
我花了几天时间研究这个。很多时间在 wp.org 上,但我就是不明白。我敢肯定,这应该是一个简单的修复。无论我尝试什么,我都无法限制每页的帖子数量,也无法显示任何分页。这是我最近的尝试(也许不是我最好的尝试)。该页面仅显示所有帖子或所有最近的帖子或其他内容(不是我的网站)。一旦我至少可以让页面限制帖子,那么我将解决分页问题。此外,在 WP 仪表板中设置每页的帖子没有任何作用……而且从来没有。这就是为什么我要自己编写代码。为什么我不能限制每页的帖子数量?我会把分页放在我目前拥有的地方吗?这是一团糟吗,大声笑?
再次感谢,
戴夫(下面的代码)
<?php /* Template Name: Stories */ ?>
<?php
get_header(); ?>
<!-- *************************************** -->
<div class="custom_two_third">
<?php
// The Query
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array('posts_per_page' => 3, 'paged' => $paged );
$the_query = new WP_Query($args);
// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
get_template_part( 'template-parts/content', get_post_format() );
}
// pagination
next_posts_link();
previous_posts_link();
} else {
get_template_part( 'template-parts/content', 'none' );
}
/* Restore original Post Data */
wp_reset_postdata();
?>
<div class="clear"></div>
</div><!-- custom_two_third -->
<?php
get_sidebar();
get_footer();
?>