我正在尝试使用此方法获取帖子的所有图像:
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID
);
$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
$images[] = wp_get_attachment_image_src( $attachment->ID, ATTACHMENT_IMAGE_SIZE );
}
return $images;
}
不幸的是,这将获取所有上传的图像,而不仅仅是与当前帖子相关的图像。我使用 *get_children* 找到了这篇文章,但它也不起作用。有任何想法吗?
ps:我在创建/更新帖子时运行代码