0

Foundation Orbit と Wordpress を使用していますが、次のコードを使用すると 5 つの画像しか表示されません。添付ファイルに制限はありますか? または他の問題がありますか?

$attachments = get_posts( array( 'post_type' => 'attachment', 'post_status' => 'published', 'post_parent' => get_the_ID() ));
4

1 に答える 1

0

wordpress は 5 件の投稿しか返さないと思うので、posts_per_page を -1 に設定すると、すべての投稿が返されます。

get_posts( array( 'post_type' => 'attachment', 'post_status' => 'published', 'post_parent' => get_the_ID(), 'posts_per_page' => '-1' ))
于 2013-11-04T14:03:04.910 に答える