WP自带的视频小工具,不能自动循环播放,可以将下面的短代码添加到增加文本小工具中:
自动循环播放
<div class="video-container" style="position: relative; width: 100%; padding-bottom: 56.25%;"> <video src="video.mp4" autoplay loop controls style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></video> </div>
默认声音最小
<div class="video-container" style="position: relative; width: 100%; padding-bottom: 56.25%;"> <video src="视频链接" autoplay loop controls muted style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></video> </div>


