首先,在主题上添加视频标题支持。
add_theme_support( \'custom-header\', array(
\'video\' => true
) );
接下来,添加\\u custom\\u header\\u markup()显示图像/视频标题的标题区域。
最后,用类似这样的css设置视频标题的样式。
.wp-custom-header iframe,
.wp-custom-header img,
.wp-custom-header video {
display: block;
height: auto;
width: 100%;
height: 400px;
}
每当用户从移动设备访问您的站点时,标题将自动切换为图像。无需添加额外代码来处理视频/图像横幅切换。
Source