<?php
/* Template Name: testvideo */
?>
<video width="320" height="240" controls>
<source src=:"videos/VfE_html5.mp4" type="video/mp4">
</video>
这个代码在播放独立的html文件时工作正常但是当我使用它作为wordpress自定义页面时,自托管视频无法播放,但如果我使用外部网址视频工作正常,我不知道出了什么问题?
答案 0 :(得分:2)
您必须为源标记提供有效的视频网址。请尝试以下代码。
<?php
/* Template Name: testvideo */
?>
<video width="320" height="240" controls>
<source src="<?php echo get_template_directory_uri(); ?>/videos/VfE_html5.mp4" type="video/mp4">
</video>
答案 1 :(得分:1)
<?php
/* Template Name: testvideo */
?>
<video width="320" height="240" controls>
<source src=<?php echo get_template_directory_uri(); ?>"/videos/VfE_html5.mp4" type="video/mp4">
</video>