我正在开发一个允许用户浏览前端挂起的帖子/内容的网站。
然而,我似乎无法对这些帖子进行分页。我有一个自定义查询,它会在分类页、归档文件等上显示待处理帖子的第一页。
但是第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; ?>