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, $size = 'thumbnail'
Sortie :
@param int $post_id Attachment ID.
@param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array
@return array|false {
// Utilisation de la fonction image_get_intermediate_size
$result = image_get_intermediate_size($post_id, $size = 'thumbnail');
if ($result) {
// Votre logique ici
}
Chargement des actualités...