以下这个wordpress代码并没有给我完整的附件结果。此代码仅提供2个结果/图像。我搜索过并发现我需要输入'numberposts' => -1'
,但这仍然不起作用。请帮助....
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => "inherit", 'post_mime_type' => 'image',
'post_parent' => $album_id
);
$attachments = get_posts($args); if ($attachments) {
foreach ($attachments as $attachment) {
$attachment_source = wp_get_attachment_url($attachment->ID);
$attachment_caption = get_post_field('post_excerpt', $attachment->ID);
}
}
答案 0 :(得分:0)
'post_status' => "inherit"
,我想您应该寻找'post_status' => "publish"