WordPress Version: 5.5
/**
* Displays header image URL.
*
* @since 2.1.0
*/
function header_image()
{
$image = get_header_image();
if ($image) {
echo esc_url($image);
}
}
The timeline below displays how wordpress function header_image has changed across different WordPress versions. If a version is not listed, refer to the next available version below.
/**
* Displays header image URL.
*
* @since 2.1.0
*/
function header_image()
{
$image = get_header_image();
if ($image) {
echo esc_url($image);
}
}
/**
* Display header image URL.
*
* @since 2.1.0
*/
function header_image()
{
$image = get_header_image();
if ($image) {
echo esc_url($image);
}
}
/**
* Display header image URL.
*
* @since 2.1.0
*/
function header_image()
{
echo esc_url(get_header_image());
}