我正在使用标准post循环以及WordPress主题“二十五个”的分页。 这是我的帖子循环的样子
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();?>
<div class="check">
<h4 class="mt-3 mb-2 blog-title">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h4>
<p class="paragraph-agileinfo"><?php the_content(); ?></p>
</div>
<hr>
<?php
endwhile;
the_posts_pagination( array(
'prev_text' => __( 'Previous page' ),
'next_text' => __( 'Next page' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page' ) . ' </span>',
) );
endif;
?>
帮帮忙。
出现分页,但单击它仅显示主页内容。不过,URL中的值正在更改。
谢谢。