WordPress自动获取文章内作为封面的方法

很多实用WordPress程序搭建**站的站长都在吐槽用WordPress做**方面体验就不是很友好的,为了改进后大大提升了站点的用户体验,需要实现自动提取文章内**作为封面,今天就分享一下WordPress自动获取文章内**作为封面的方法。

WordPress自动获取文章内作为封面的方法 (https://www.wpzt.net/) WordPress基础教程 第1张

将下方代码添加进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
喜欢就支持一下吧
点赞6 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容