Uses
| Uses | Description |
|---|---|
| wp-includes/theme.php: get_header_video_url() | Retrieves header video URL for custom header. |
| wp-includes/formatting.php: esc_url() | Checks and cleans a URL. |
Displays header video URL.
File: wp-includes/theme.php
function the_header_video_url() {
$video = get_header_video_url();
if ( $video ) {
echo esc_url( $video );
}
} | Version | Description |
|---|---|
| 4.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/the_header_video_url