很多实用WordPress程序搭建**站的站长都在吐槽用WordPress做**方面体验就不是很友好的,为了改进后大大提升了站点的用户体验,需要实现自动提取文章内**作为封面,今天就分享一下WordPress自动获取文章内**作为封面的方法。
将下方代码添加进function即可实现:
//提取**封面
function catch_video_i**ge() {
global $post, $posts;
$video_i**ge = ”;
ob_start();
ob_end_clean();
$output = preg_**tch_all(‘/<video.+poster=[\'”]([^\'”]+)[\'”].*>/i’, $post->post_content, $**tches);
$video_i**ge = $**tches [1] [0];
return $video_i**ge;
}
//正则提取字符串中**url地址
function catch_that_video() {
global $post, $posts;
$first_video = ”;
ob_start();
ob_end_clean();
$output = preg_**tch_all(‘/<video[^<>]*src=[\”]([^\”]+)[\”][^<>]*>/im’, $post->post_content, $**tches);
$first_video = $**tches [1] [0];
return $first_video;
}
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容