我是一个初学者,如果我犯了一些明显的错误,我很抱歉,但我不明白为什么我的帖子循环没有显示我的所有帖子,我创建了14个测试帖子,并在Wordpress中设置了阅读选项以显示最新的帖子,并将数字设为10,第一页上只显示5篇文章,当我单击分页中的第二页时,只有1篇文章,我的页脚一直到邮箱的末尾,而不是停留在第二页上。
<?php get_header(); ?>
<div class=\'containter containter--narrow page-section\'>
<?php if ( have_posts() ) :
while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" class=\'post-item\'>
<h2><a class="post-title headline headline-medium" href=\'<?php the_permalink(); ?>\'><?php the_title(); ?></a></h2>
<hr>
<div class=\'metabox\'>Author: <?php the_author_posts_link(); ?> Published on: <?php the_time(\'d/M/Y\'); ?> Categories: <?php echo get_the_category_list(\', \'); ?></div>
<div class="post-excerpt content">
<?php the_excerpt() ?>
<p><a class=\'read-more\' href="<?php echo get_permalink(the_post()); ?>">Read More »</a></p>
</div>
</article>
<?php endwhile;
endif;
echo paginate_links(); ?>
</div>
<?php get_footer();
?>