Summery Summery
Display the post thumbnail.
Syntax Syntax
Description Description
When a theme adds ‘post-thumbnail’ support, a special ‘post-thumbnail’ image size is registered, which differs from the ‘thumbnail’ image size managed via the Settings > Media screen.
When using the_post_thumbnail() or related functions, the ‘post-thumbnail’ image size is used by default, though a different size can be specified instead as needed.
Parameters Parameters
- $size
-
(Optional) Image size to use. Accepts any valid image size, or an array of width and height values in pixels (in that order). Default 'post-thumbnail'.
Default value: 'post-thumbnail'
- $attr
-
(Optional) Query string or array of attributes.
Default value: ''
Source Source
File: wp-includes/post-thumbnail-template.php
* @param string|array $size Optional. Image size to use. Accepts any valid image size, or * an array of width and height values in pixels (in that order). * Default 'post-thumbnail'.
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.9.0 | Introduced. |