欢迎访问服务器技术网-www.fuwuqijishu.com

Typecho内容首张图片作为缩略图图片方法

网站建设 fuwuqijishu 2年前 (2022-09-04) 65次浏览 0个评论 扫描二维码

一般常规的做法是我们每个文章缩略图都要精挑细选的,然后单独上传,比如部落的缩略图基本上我会单独制作上传,这样显得规范一些。但是有些朋友不喜欢这样,如果不调用图片吧难看,调用吧,自己传单独的浪费时间,于是直接使用文章的图片作为缩略图也是一个办法。

function get_postthumb($this) {
   preg_match_all( "/<[img|IMG].*?src=[\'|\"](.*?)[\'|\"].*?[\/]?>/", $this->content, $matches );  //通过正则式获取图片地址
   if(isset($matches[1][0])){
      $thumb = $matches[1][0];
   }
   return $thumb;
}

我们直接丢到当前主题的Functions.php中,然后意图是将设置文章中的第一张图作为缩略图。

<img src="<?php echo get_postthumb($this); ?>">

在需要的调用首图调用。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2207.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900