如何给WordPress网站插入视频呢?我们一起看看插入视频短代码WordPress函数wp_video_shortcode。
wp_video_shortcode( array $attr, string $content = ” )
wp_video_shortcode的官方描述,用来构建短代码输出视频。这实现了视频短代码在帖子中显示mp4的功能。
参数说明
$attr
(array) (必须) 短代码属性值
‘src’
(string) 视频资源的URL地址,默认空
‘height’
(int) 嵌入视频元素的高度值像素,默认360
‘width’
(int) 嵌入视频元素的宽度值像素,默认$content_width 或 640.
‘poster’
(string) <video> 元素的post属性值. 默认为空.
‘loop’
(string) <video> 元素loop属性值,默认空
‘autoplay’
(string) <video> 元素的autoplay属性值,默认空
‘preload’
(string) <video> 元素的’preload’属性值,默认 ‘metadata’.
‘class’
(string) <video> 元素的’class’属性值 默认 ‘wp-video-shortcode’.
$content
(string) (可选) 短代码内容,默认空
返回值
<video>元素显示的HTML内容
代码位置
文件位于:wp-includes/media.php,在线地址:https://developer.wordpress.org/reference/files/wp-includes/media.php/