the_header_video_url

函数


the_header_video_url ( No parameters )
定义位置
  • wp-includes/theme.php
    , line 1614
引入
4.7.0
弃用

Displays header video URL.

function the_header_video_url() {
	$video = get_header_video_url();

	if ( $video ) {
		echo esc_url( $video );
	}
}