您使用错误的方法调用mp4文件的http路径,要解决此问题,请考虑使用以下wp函数之一:
get_theme_file_uri(\'assets/videos/videobg.mp4\');
Or this :
trailingslashit( get_template_directory_uri() ).\'assets/videos/videobg.mp4\';
因此,您的最终代码应该如下所示:
<source src="<?php echo get_theme_file_uri(\'assets/videos/videobg.mp4\') ?>" type="video/mp4">