get_header_video_url

函数
get_header_video_url ( No parameters )
返回值
  • (string|false) Header video URL or false if there is no video.
定义位置
相关方法
the_header_video_urlget_header_video_settingsget_header_imagehas_header_videoget_header_textcolor
引入
4.7.0
弃用
-

get_header_video_url: 这个函数用来检索当前WordPress网站的标题视频的URL。这个URL可以指向网站上或外部平台上托管的视频文件。

检索自定义页眉的页眉视频URL。

如果有的话,使用本地视频,或者返回到一个外部视频。

function get_header_video_url() {
	$id = absint( get_theme_mod( 'header_video' ) );

	if ( $id ) {
		// Get the file URL from the attachment ID.
		$url = wp_get_attachment_url( $id );
	} else {
		$url = get_theme_mod( 'external_header_video' );
	}

	/**
	 * Filters the header video URL.
	 *
	 * @since 4.7.3
	 *
	 * @param string $url Header video URL, if available.
	 */
	$url = apply_filters( 'get_header_video_url', $url );

	if ( ! $id && ! $url ) {
		return false;
	}

	return sanitize_url( set_url_scheme( $url ) );
}

常见问题

FAQs
查看更多 >