【发布时间】:2012-06-15 04:39:03
【问题描述】:
我正在寻找一种提取缩略图的方法以及从多个指定帖子 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();
}
}
?>
【问题讨论】:
-
一次从多个帖子中提取图像附件...假设我有 3 个帖子 - 我只想从这 3 个帖子中提取所有图像附件。
-
或者更好——指定父页面的帖子 ID 并从其子页面中提取所有附件..
-
你找到这个@Joe 的答案了吗?