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