我想返回所有帖子query_posts
. 我试过设置posts_per_page
非常高的数字,但是query_posts
发疯了,不回任何帖子。无限制查询帖子的正确方法是什么?
$args = array(
\'post_type\' => \'post\',
\'cat\' => \'22,47,67\',
\'orderby\' => \'name\',
\'order\' => \'ASC\',
\'hide_empty\' => 1,
\'depth\' => 1,
\'posts_per_page\' => ?
);