0

我想抓取图像 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'/>";
        }
4

1 回答 1

0

使用自定义查询尝试此代码.....

$img=$wpdb->get_results("select guid from ".$wpdb->prefix."posts where post_type='attachment' and post_mime_type like 'image/%' and ID between 161 and 166"); // Query to fetch images
foreach($img as $image){
echo "<img src='$image->guid'/>";}
于 2013-07-16T14:36:31.750 回答