2013-11-04 38 views
0

我使用基金會軌道和Wordpress,但是當我使用下面的代碼它只給了我5張圖片。 附件是否有限制?還是還有其他問題?WordPress基金會軌道只給出5幻燈片

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

回答

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')) 
+0

感謝您的回答 – SuperDJ