the_post_thumbnail_url

函数


the_post_thumbnail_url ( $size = 'post-thumbnail' )
参数
  • (string|int[])
    $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’.
    Required:
    Default: ‘post-thumbnail’
定义位置
  • wp-includes/post-thumbnail-template.php
    , line 277
引入
4.4.0
弃用

Displays the post thumbnail URL.

function the_post_thumbnail_url( $size = 'post-thumbnail' ) {
	$url = get_the_post_thumbnail_url( null, $size );

	if ( $url ) {
		echo esc_url( $url );
	}
}