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



set_post_thumbnail_size › WordPress Function

Od2.9.0
Przestarzałyn/a
set_post_thumbnail_size ( $width = 0, $height = 0, $crop = false )
Parametry: (3)
  • (int) $width Image width in pixels.
    Wymagane: Nie
    Domyślny:
  • (int) $height Image height in pixels.
    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
Zobacz:
Zdefiniowane na:
Codex:

Registers an image size for the post thumbnail.



Źródło

function set_post_thumbnail_size( $width = 0, $height = 0, $crop = false ) {
	add_image_size( 'post-thumbnail', $width, $height, $crop );
}