支持的文件类型有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】');