the_header_video_url

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.

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

WordPress Version: 4.7

/**
 * Display header video URL.
 *
 * @since 4.7.0
 */
function the_header_video_url()
{
    $video = get_header_video_url();
    if ($video) {
        echo esc_url($video);
    }
}