the_post_thumbnail_url( string|int[] $size = 'post-thumbnail' )
Displays the post thumbnail URL.
Parameters
-
$size
string|int[] 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:
'post-thumbnail'
Source
File: wp-includes/post-thumbnail-template.php
.
View all references
function the_post_thumbnail_url( $size = 'post-thumbnail' ) {
$url = get_the_post_thumbnail_url( null, $size );
if ( $url ) {
echo esc_url( $url );
}
}
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
background Div Post thumbnail