首页 WordPress函数大全 image_get_intermediate_size()

image_get_intermediate_size()

2020-05-02 / 3709阅 / 悠然

如何你看完本文还不知道如何使用该函数,可以联系我定制视频教程,50元/个函数,学不会全额退款

image_get_intermediate_size( int $post_id, array|string $size = 'thumbnail' )

Retrieves the image’s intermediate size (resized) path, width, and height.

描述

The $size parameter can be an array with the width and height respectively. If the size matches the ‘sizes’ metadata array for width and height, then it will be used. If there is no direct match, then the nearest image size larger than the specified size will be used. If nothing is found, then the function will break out and return false.

The metadata ‘sizes’ is used for compatible sizes that can be used for the parameter $size value.

The url path will be given, when the $size parameter is a string.

If you are passing an array for the $size, you should consider using add_image_size() so that a cropped version is generated. It’s much more efficient than having to find the closest-sized image and then having the browser scale down the image.

参数

$post_id

(int)
(Required)
Attachment ID.

$size

(array|string)
(Optional)
Image size. Accepts any valid image size, or an array of width and height values in pixels (in that order).

Default value: 'thumbnail'

返回

(array|false) $data { Array of file relative path, width, and height on success. Additionally includes absolute path and URL if registered size is passed to $size parameter. False on failure. @type string $file Image's path relative to uploads directory @type int $width Width of image @type int $height Height of image @type string $path Image's absolute filesystem path. @type string $url Image's URL. }

大家谈论
    我的见解