the_post_thumbnail_url() WordPress Function

The the_post_thumbnail_url() function is used to display the URL of a featured image for a post or page. This can be useful when you want to use the image in a custom field or when you want to display the image on its own.

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 value: 'post-thumbnail'


Top ↑

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 );
	}
}


Top ↑

Changelog

Changelog
VersionDescription
4.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.