pbootcms不想自动提取缩略图的方法

  • A+
所属分类:轻松一刻
摘要

下面来说说pbootcms不想自动提取缩略图的方法。使用你的IDE工具,VScode、Sublime等工具,使用“无缩略图时”作为关键词搜索整个项目,会搜索到2个文件,共3处代码。

pbootcms不想自动提取缩略图的方法

pbootcms不想自动提取缩略图的方法

下面来说说pbootcms不想自动提取缩略图的方法。

使用你的IDE工具,VScode、Sublime等工具,使用“无缩略图时”作为关键词搜索整个项目,会搜索到2个文件,共3处代码。

我们打开搜索到的代码位置,如下:

// 无缩略图时,自动提取文章第一张图为缩略图

            if (! $ico && preg_match('/<img/s+.*?src=/s?[/'|/"](.*?(/.gif|/.jpg|/.png|/.jpeg))[/'|/"].*?[//]?>/i', decode_string($content), $srcs) && isset($srcs[1])) {

                $ico = $srcs[1];

            }

我们只需要将下方的 if 开头的 3行 代码注释掉即可。

(注释就是在这三行的最前面加上双斜杠即可)

最终修改如下:

// 无缩略图时,自动提取文章第一张图为缩略图

            //if (! $ico && preg_match('/<img/s+.*?src=/s?[/'|/"](.*?(/.gif|/.jpg|/.png|/.jpeg))[/'|/"].*?[//]?>/i', decode_string($content), $srcs) && isset($srcs[1])) {

            //    $ico = $srcs[1];

            //}

一共有三处,均注释掉即可。

这样就去掉了PbootCms程序默认提取缩略图的功能。

  • 我的微信公众号
  • 扫一扫关注
  • weinxin
  • 我的新浪微博号
  • 扫一扫关注
  • weinxin
小辉博客

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: