前段时间为了二次开发WordPress用作视频站的战略,感觉WordPress用作视频方面体验很不友好,既然如此就实现自动提取文章内视频作为封面,于是记录下来。
改进后大大提升了站点的用户体验,那么该如何修改才可以使WordPress实现自动提取文章内视频作为封面呢?
这个功能还是非常有意义的,可以帮我们减轻很多工作量。
将下方代码添加进function即可实现:
//提取视频封面
function catch_video_image() {
global $post, $posts;
$video_image = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<video.+poster=['"]([^'"]+)['"].*>/i', $post->post_content, $matches);
$video_image = $matches [1] [0];
return $video_image;
}
//正则提取字符串中视频url地址
function catch_that_video() {
global $post, $posts;
$first_video = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<video[^<>]*src=["]([^"]+)["][^<>]*>/im', $post->post_content, $matches);
$first_video = $matches [1] [0];
return $first_video;
}
未经允许不得转载:WordPress组织 » WordPress实现自动提取文章内视频作为封面
评论前必须登录!