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

无插件代码实现Typecho内容第一张图片作为文章缩略图

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

为了美观和提示功能,很多博客都会将文章首张图作为缩略图,除了插件外,也大都是通过在主题functions.php添加函数代码的方法来实现的。

实现首图作为缩略图的代码操作如下

第一步:在主题functions.php文件中添加以下代码:

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

其主要实现原理是:通过正则表达式匹配文章内容的img标签获取src的图片地址。

第二步:调用代码

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

最后保存后运行代码

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

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

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

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2201.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