首页 WordPress函数大全 add_image_size()

add_image_size()

2020-05-02 / 3439阅 / 悠然

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

add_image_size( string $name, int $width, int $height, bool|array $crop = false )

注册新的图像尺寸。

描述

参数

$name

(string)
(Required)
Image size identifier.

$width

(int)
(Optional)
Image width in pixels. Default 0.

$height

(int)
(Optional)
Image height in pixels. Default 0.

$crop

(bool|array)
(Optional)
Image cropping behavior. If false, the image will be scaled (default), If true, image will be cropped to the specified dimensions using center positions. If an array, the image will be cropped using the array to specify the crop location. Array values must be in the format: array( x_crop_position, y_crop_position ) where: - x_crop_position accepts: 'left', 'center', or 'right'. - y_crop_position accepts: 'top', 'center', or 'bottom'.

Default value: false

大家谈论
    我的见解