如何将视频添加到索引页?
我需要将视频添加到我的单页 WordPress 网站。我一直在寻找一些插件,但所有这些都只允许将视频添加到帖子或页面。因为我只使用index.php,所以我不知道如何在那里添加视频。而且我不想使用来自 Youtube、Vimeo 等的嵌入视频。
有人可以帮助我吗?
I need to add videos to my single page Wordpress website. I've been looking at some plugins for this but all of these only allow adding videos to posts or pages. Since I'm only using the index.php I don't know how to add a video there.. And I would prefer not to use embedded videos from Youtube, Vimeo etc.
Anyone who can help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@andreas 你能更好地解释一下你想要实现的目标吗?
如果您的模板中只有一个视频,您可以使用类似的内容..
<对象宽度=“425”高度=“344”><参数名称=“电影”值=“http://www.mydomain.com/myvideo.mov”><嵌入src =“http://www.mydomain.com/myvideo.mov”类型=“application/x-shockwave-flash”allowscriptaccess =“始终”allowfullscreen =“true”宽度=“425”高度=“344” “>
@andreas Could you please explain better what you are trying to achieve?
if is only a video in your template you can use something like this..
<object width="425" height="344"><param name="movie" value="http://www.mydomain.com/myvideo.mov"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>
<embed src="http://www.mydomain.com/myvideo.mov" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>