the_post_thumbnail_url( string|array $size = 'post-thumbnail' )
Display the post thumbnail URL.
Description Description
Parameters Parameters
- $size
-
(string|array) (Optional) Image size to use. Accepts any valid image size, or an array of width and height values in pixels (in that order).
Default value: 'post-thumbnail'
Source Source
File: wp-includes/post-thumbnail-template.php
function the_post_thumbnail_url( $size = 'post-thumbnail' ) { $url = get_the_post_thumbnail_url( null, $size ); if ( $url ) { echo esc_url( $url ); } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |