the_header_video_url() WordPress Function
The the_header_video_url() function is used to get the URL of the header video for the current page.
the_header_video_url() #
Displays header video URL.
Source
File: wp-includes/theme.php
function the_header_video_url() {
$video = get_header_video_url();
if ( $video ) {
echo esc_url( $video );
}
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.7.0 | Introduced. |