利用WordPress自带短代码添加视频

技巧攻略评论1,177阅读模式
摘要利用WordPress自带的视频短代码可以方便地让你在任何位置添加视频,

支持的文件类型有mp4,m4v,webm,ogv,wmv和flv。

文章源自甲骨虫-https://www.icqone.com/15329.html

基本的视频短代码文章源自甲骨虫-https://www.icqone.com/15329.html

【video src="pepper.mp4"】文章源自甲骨虫-https://www.icqone.com/15329.html

将【】替换为[],以下相同文章源自甲骨虫-https://www.icqone.com/15329.html

添加到文章中会自动调用WordPress自带播放器。文章源自甲骨虫-https://www.icqone.com/15329.html

模板文件中使用短代码文章源自甲骨虫-https://www.icqone.com/15329.html

可以使用do_shortcode()函数在主题模板中调用视频,如视频文件存储在您的主题目录中,使用get_template_directory_uri()或get_stylesheet_uri()直接获取文件url。文章源自甲骨虫-https://www.icqone.com/15329.html

$video_file = get_template_directory_uri() . "/videos/pepper.mp4";
echo do_shortcode('【video mp4=' . $video_file . '】');

循环和自动播放文章源自甲骨虫-https://www.icqone.com/15329.html

可以通过参数实现循环和自动播放,并定义类为my-video文章源自甲骨虫-https://www.icqone.com/15329.html

echo do_shortcode('【video mp4=' . $video_file . ' loop = "on" autoplay = 1 class = my-video】');

添加视频封面(占位图)文章源自甲骨虫-https://www.icqone.com/15329.html

如将在(主题目录)/ images文件夹中cover.jpg的图片作为封面:

echo do_shortcode('【video mp4=' . $video_file . ' poster = ' . get_template_directory_uri() . '/images/cover.jpg】');

或者用下面的方法添加封面图:

设置视频高度和宽度

echo do_shortcode('【video mp4=' . $video_file . ' width = 320 height = 240】');
 最后更新:2024-1-14
  • 免责声明:本站所有资源均收集自互联网,分享目的仅供学习参考,并不贩卖资源,资源版权归该资源的合法拥有者所有,请您在下载后24小时内删除。若本站发布的内容侵犯到您的合法权益,请立即联系37411445@qq.com及时做删除处理!
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定

拖动滑块以完成验证