</div>
2.打开phpcms\model\content_model.class.php 找到如下内容
//自动提取缩略图
if(isset($_POST['auto_thumb']) && $systeminfo['thumb'] == '' && isset($modelinfo['content'])) {
$content = $content ? $content : stripslashes($modelinfo['content']);
$auto_thumb_no = intval($_POST['auto_thumb_no'])-1;
if(preg_match_all("/(src)=([\"|']?)([^ \"'>]+\.(gif|jpg|jpeg|bmp|png))\\2/i", $content, $matches)) {
$systeminfo['thumb'] = $matches[3][$auto_thumb_no];
}
}
在这下面添加如下代码
//自动提取组图为缩略图
if(isset($_POST['auto_thumbp']) && $systeminfo['thumb'] == '' && isset($modelinfo['content'])) {
$自定义字段名 = $自定义字段名 ? $自定义字段名 : stripslashes($modelinfo['自定义字段名']);
$auto_thumb_no = intval($_POST['auto_thumb_nop'])-1;
if(preg_match_all("/(=>)\s([\b\"|']?)([^ \"'>]+\.(gif|jpg|jpeg|bmp|png))\\2/i", $自定义字段名, $matches)) {
$systeminfo['thumb'] = $matches[3][$auto_thumb_no];
}
}
注意:content_model.class.php文件有两片需要添加这个代码,一处是新增加文章的时候,一处是修改文章的时候!