/**
* Displays the post thumbnail URL.
*
* @since 4.4.0
*
* @param 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'.
*/
function the_post_thumbnail_url( $size = 'post-thumbnail'
) { $url =
get_the_post_thumbnail_url( null,
$size );
if ( $url ) { echo esc_url( $url );
}}/**
* Returns the post thumbnail caption.
*
* @since 4.6.0
*
* @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global `$post`.
* @return string Post thumbnail caption.
*/