我正在寻找一种提取缩略图的方法以及从多个指定的帖子 ID 中提取图像附件的大图像(用作迷你画廊)的来源。
基本上是对将所有图像组合到一个迷你画廊中的帖子附件的查询。
我已经看到如何从单个帖子中提取图像附件,但不知道如何从多个帖子中提取图像附件?
换句话说,我们可以从指定的帖子数组中提取图片附件吗?
下面是我用来拉取整个站点的所有附件的代码:
<?php
$args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => null );
$attachments = get_posts( $args );
if ($attachments) {
foreach ( $attachments as $post ) {
setup_postdata($post);
the_title();
the_attachment_link($post->ID, false);
the_excerpt();
}
}
?>