在分类页面上显示多个自定义帖子与分页 - WordPress

时间:2016-07-06 08:44:33

标签: php wordpress loops pagination categories

我试图通过调整循环和添加查询,将两个自定义帖子类型添加到archive.php页面。到目前为止,我的查询工作,因为它显示了两种帖子类型,并将页面拆分为分页页面。但是,当我点击该类别的第2页时,它会显示一个空白页面。有人能让我知道我哪里出错吗?感谢。

<?php
$paged = (get_query_var('page')) ? get_query_var('page') : 1;
$args = query_posts(array(
'cat' => get_query_var('cat'),
'paged'=>$paged, 
'post_type' => array('podcasts','post'),
));
$loop = new WP_Query( $args );
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

<!-- LOOP CONTENTS -->

<?php endwhile; ?>
<?php endif; ?>
<?php numeric_bootstrap_posts_nav(); ?>

0 个答案:

没有答案