wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



add_image_size › WordPress Function

Od2.9.0
Przestarzałyn/a
add_image_size ( $name, $width = 0, $height = 0, $crop = false )
Parametry: (4)
  • (string) $name Image size identifier.
    Wymagane: Tak
  • (int) $width Optional. Image width in pixels. Default 0.
    Wymagane: Nie
    Domyślny:
  • (int) $height Optional. Image height in pixels. Default 0.
    Wymagane: Nie
    Domyślny:
  • (bool|array) $crop { 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: @type string $0 The x crop position. Accepts 'left' 'center', or 'right'. @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'. }
    Wymagane: Nie
    Domyślny: false
Zdefiniowane na:
Codex:

Registers a new image size.



Źródło

function add_image_size( $name, $width = 0, $height = 0, $crop = false ) {
	global $_wp_additional_image_sizes;

	$_wp_additional_image_sizes[ $name ] = array(
		'width'  => absint( $width ),
		'height' => absint( $height ),
		'crop'   => $crop,
	);
}