我正在开发一个网站,该网站允许用户浏览前端的待处理帖子/内容。
但是,我似乎无法使用这些帖子进行分页。我有一个自定义查询,它会在类别页面、存档等上显示待处理帖子的第一页。
但是第 2、3 页等不起作用。
有什么想法吗?
谢谢!
这是我正在使用的示例代码:
$args = array(
'cat' => $cat_ID,
'paged' => get_query_var('paged'),
'showposts' => 50,
'posts_per_page' => 50,
'post_status' => 'pending',
);
query_posts($args);
if( have_posts() ) : while (have_posts()) : the_post();
//Post code inserted here
<?php endwhile; ?>
<?php endif; ?>