the_post_thumbnail

函数


the_post_thumbnail ( $size = 'post-thumbnail', $attr = '' )
参数
  • (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:
    Default: ‘post-thumbnail’
  • (string|array)
    $attr
    Optional. Query string or array of attributes. Default empty.
    Required:
    Default: (empty)
相关
  • get_the_post_thumbnail()
定义位置
  • wp-includes/post-thumbnail-template.php
    , line 91
引入
2.9.0
弃用

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.

function the_post_thumbnail( $size = 'post-thumbnail', $attr = '' ) {
	echo get_the_post_thumbnail( null, $size, $attr );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。