我有一个要添加分页的活动页面。但是,由于它是自定义帖子类型,我发现它相当困难。我已经设法为我的新闻页面进行分页,但我无法为事件页面获得相同的结果。这是我的活动页面代码
<?php
get_header();
get_sidebar('left');
?>
<article class="content-main events" role="main" id="post-<?php the_ID() ?>">
<?php include 'breadcrumbs.php'; ?>
<?php query_posts(array('posts_per_page'=>'2')); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="news-post">
<h1><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h1>
<?php the_excerpt() ?>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
<!--Pagination-->
<?php echo paginate_links( $args ) ?>
<?php
global $wp_query;
$big = 999999999; // need an unlikely integer
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages
) );
?>
</article><!-- //.content-main -->
<?php
get_footer();
如果我尝试改变这一点
<?php query_posts(array('posts_per_page'=>'2')); ?>
对此
<?php query_posts(array('category_name'=>'events','posts_per_page'=>'2')); ?>
这也不起作用。但是,如果我完全删除该行,它会显示新闻帖子类型。我难住了!