在正面显示视频字段

时间:2018-03-21 09:39:07

标签: wordpress

我有一个自定义类型的节目,附有视频剪辑。

我在主题上显示了所有字段,但我在显示视频片段时遇到了困难。

在我的后台,你在我的节目中添加一个媒体文件(视频剪辑)。

我尝试了一些wordpress功能,但我没有找到解决方案。

感谢您的阅读,

1 个答案:

答案 0 :(得分:2)

以下代码可以帮助您:

<?php 
    $sc_video_url = get_post_meta(get_the_ID(),'meta_key',true); //place or meta key into it too get saved video file url
?>
<div class="responsive-video">
    <video width="320" height="240" controls>
        <source src="<?php echo esc_url($sc_video_url);  ?>" type="video/mp4">
        <source src="<?php echo esc_url($sc_video_url);  ?>" type="video/ogg">
        Your browser does not support the video tag.
    </video>
</div>