-WORDPRESS-
我创建了一个自定义页面并在wordpress上使用模板, 我只想按类别显示帖子并执行其他操作, 但是为什么分页不起作用,我单击了下一页,仍然显示相同的帖子
如何解决此问题,我的代码:
<?php
/**
* Template Name: postbys
*
* @link https://codex.wordpress.org/Template_Hierarchy
* @package Dan
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<!-- to show post by category -->
<?php if (query_posts('showposts=2" . "&cat=2')) : ?>
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'entry-card' ); ?>>
<h2><a href="<?php the_permalink() ?>"><?php the_title();?></a></h2>
</article>
<?php endwhile; ?>
<?php the_posts_pagination( array(
'prev_text' => '<span class="fas fa-angle-double-left" aria-hidden="true"></span> ' . __( 'Previous page', 'dan' ),
'next_text' => __( 'Next page', 'dan' ) . ' <span class="fas fa-angle-double-right" aria-hidden="true"></span>',
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'dan' ) . '</span>',
) );
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</main><!-- #main -->
<?php
get_sidebar();
get_footer();
谢谢,抱歉我的英语不好..