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 回答