我有这段代码应该返回与分类 id 相关的所有帖子,但它会返回最后 5 个帖子。
<?php
$leaderships = new WP_Query(array(
'post_type' => 'leadership',
'posts_per_page' => 11,
'tax_query' => array(
array(
'taxonomy' => 'leadership-committee',
'field' => 'id',
'terms' => 13,
),
),
));
?>
posts_per_page 在这里不起作用,任何帮助都可以获取所有帖子。
谢谢