wpseek.com
WordPress开发者和主题制作者的搜索引擎



the_custom_header_markup › WordPress Function

Since4.7.0
已弃用n/a
the_custom_header_markup ( 没有参数 )
定义在:
文档:

Prints the markup for a custom header.

A container div will always be printed in the Customizer preview.


源码

function the_custom_header_markup() {
	$custom_header = get_custom_header_markup();
	if ( empty( $custom_header ) ) {
		return;
	}

	echo $custom_header;

	if ( is_header_video_active() && ( has_header_video() || is_customize_preview() ) ) {
		wp_enqueue_script( 'wp-custom-header' );
		wp_localize_script( 'wp-custom-header', '_wpCustomHeaderSettings', get_header_video_settings() );
	}
}