wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



the_post_thumbnail › WordPress Function

Desde2.9.0
Obsoleton/a
the_post_thumbnail ( $size = 'post-thumbnail', $attr = '' )
Parâmetros: (2)
  • (string|int[]) $size Optional. Image size. Accepts any registered image size name, or an array of width and height values in pixels (in that order). Default 'post-thumbnail'.
    Required: No
    Padrão: 'post-thumbnail'
  • (string|array) $attr Optional. Query string or array of attributes. Default empty.
    Required: No
    Padrão: (empty)
Ver:
Definido em:
Codex:

Displays the post thumbnail.

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.


Fonte

function the_post_thumbnail( $size = 'post-thumbnail', $attr = '' ) {
	echo get_the_post_thumbnail( null, $size, $attr );
}