我正在为我当前的项目使用以下脚本。
$query_images_args = array(
\'post_type\' => \'attachment\',
\'post_mime_type\' =>\'image\',
\'post_status\' => \'inherit\',
\'posts_per_page\' => -1
);
$query_images = new WP_Query( $query_images_args );
$images = array();
foreach ( $query_images->posts as $image) {
$images[]= wp_get_attachment_url( $image->ID );
}
这会将当前帖子或页面的所有图像路径保存到一个数组中。现在路径被设置为“原始”上传文件。
是否可以有一个参数指定我要将wordpress生成的最大文件大小(在介质中设置)保存到该阵列?
因此,当将图像上载到WP时,会发生以下情况…
image-150x150.jpg
image-300x247.jpg
image-1024x843.jpg
image.jpg
当我离开媒体上传器的默认设置时,这四幅图像就在我的上传文件夹中。使用上面的脚本“image.jpg”被推送到数组中。但是,我希望数组中生成的最大大小—在本例中
image-1025x843.jpg
.
这可能吗?