分页在coustom post archive wordpress中不起作用

时间:2017-12-24 14:36:39

标签: wordpress wordpress-theming

我在theme(archive-cpt.php)中创建了一个自定义的帖子类型存档页面,并使用了新的Wp_Query。当我尝试使用get_query_var("paged")时,它会index.php而不是archive-cpt.php。 我该怎么做?

archive-cpt.php来源:

$paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
$post_args = array(
    "post_type" => HASHTIX_POST_TYPE,
    "post_status" => $post_status,
    'posts_per_page' => 1,
    'paged' => $paged,
);
$process_posts = new WP_Query($post_args);

0 个答案:

没有答案