我想抓取图像 161 到 166,而不必调用我的整个媒体库数组并将它们拼接起来。随着时间的推移,我在那里拥有的越多,它就越会减慢我的网站速度。这是我到目前为止所拥有的,我array_reverse
用来反转 ID,因此最近上传的内容是最后的,我array_splice
用来查找我需要提取的图像。有没有更直接的方法来查找 ID 为 161 到 166 的图像?
function get_images_from_media_library() {
$args = array(
'post_type' => 'attachment',
'post_mime_type' =>'image',
'post_status' => 'inherit',
'posts_per_page' => -1,
);
$query_images = new WP_Query( $args );
$images = array();
foreach ( $query_images->posts as $image) {
$images[]= $image->guid;
}
$images = array_reverse($images);
$images = array_splice($images, 3,6);
return $images;
}
$img = get_images_from_media_library();
foreach($img as $image){
echo "<img src='$image'/>";
}