ですべての投稿を返したい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' => ?
);
type
ためにpost_type
(または完全にこの行を削除します)。誰かがこの小さな間違いをコピー&ペーストできないように、ラトウィックの答えとあなたの質問の両方を編集します。