带有基金会轨道的WordPress仅提供5张幻灯片



我使用Foundation Orbit和Wordpress,但是当我使用以下代码时,它只给了我5张图像。附件有限制吗?还是有其他问题?

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

我相信wordpress只会返回5个帖子,所以你需要将posts_per_page设置为-1,它将返回所有帖子。

get_posts( array( 'post_type' => 'attachment', 'post_status' => 'published', 'post_parent' => get_the_ID(), 'posts_per_page' => '-1' ))

最新更新