WordPress提取文章第一张图片为缩略图
在主题的function文件里,增加以下代码:
//截取内容中第一张图片函数,可作为缩略图
function catch_first_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){
$first_img = "这里替换一个默认图片路径";
}
return $first_img;
}
需要为此代码准备一张默认缩略图,此外,调用方法是:
<img src="<?php echo catch_first_image() ?>">
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:WordPress提取文章第一张图片为缩略图 或使用默认图片(纯代码)
文章链接:https://www.qqhgg.com/13.html
该作品系作者结合个人学习经验及互联网相关知识整合。如若侵权请通过投诉通道提交信息,我们将按照规定及时处理。
标签:缩略图