Pbootcms怎么取消发布内容自动提取缩略图?
下载pbootcms程序,使用Notepad++全局查找“无缩略图时”找到以下代码 :

// 无缩略图时,自动提取文章第一张图为缩略图
if (! $ico && preg_match('/<img\s+.*?src=\s?[\'|\"](.*?(\.gif|\.jpg|\.png|\.jpeg))[\'|\"].*?[\/]?>/i', decode_string($content), $srcs) && isset($srcs[1])) {
$ico = $srcs[1];
}

一共有三处,分别在/apps/admin/controller/content/下的ContentController.php和SingleController.php文件,可以选择注释掉或者删除,这样就成功的去掉了PbootCms程序默认提取缩略图的功能。
