DEDE设置根据文章标题自动获取tag的方法
来源:本站原创|时间:2021-08-05|栏目:dedecms|点击: 次
DEDE设置根据文章标题自动获取tag的方法:
修改:\dede\action目录article_add_action.php文件
在【//写入Tag索引】与【InsertTags($dsql,$tag,$arcID,0,$typeid,$arcrank);】之间插入:
if($autokey==1){
require_once(DEDEADMIN."/../include/pub_splitword_[url]www.php[/url]");
$tag = "";
$sp = new SplitWord();
$titleindexs = explode(" ",trim($sp->GetIndexText($sp->SplitRMM($title))));
//$allindexs = explode(" ",trim($sp->GetIndexText($sp->SplitRMM(Html2Text($body)),200)));
if(/*is_array($allindexs) && */is_array($titleindexs)){
foreach($titleindexs as $k){
if(strlen($tag)>=50) break;
else $tag .= $k." ";
}
/*foreach($allindexs as $k){
if(strlen($keywords)>=50) break;
else if(!in_array($k,$titleindexs)) $keywords .= $k." ";
}*/
}
$sp->Clear();
unset($sp);
//$tag = preg_replace("/#1#|#2#/","",$tag);
$tag = addslashes($tag);
}
1 等于 p
2 等于 e
分页干扰 所以替换
默认只对文章标题分词,要想加入内容分词请删除注释!
栏 目:dedecms
本文地址:https://www.xiuzhanwang.com/a1/dedecms/14411.html
您可能感兴趣的文章
- 08-05dede:channel currentstyle 失效问题,调用子级栏目后就无效
- 08-05Dedecms文件目录结构解说(能知道织梦每个文件有什么用)
- 08-05Dedecms5.7版ckeditor网页编辑器添加中文字体
- 08-05织梦DedeCMS获取当前栏目文章数量
- 08-05DedeCMS后台模块列表显示空白的解决办法
- 08-05DedeCMS自定义字段图片调用的问题{dede:img ...}解决方法
- 08-05织梦DedeCMS调用显示discuz里面主题的方法
- 08-05常用的织梦dedecms安全设置集合整理
- 08-05dedecms教程:上传图片相对路径改成绝对路径方法
- 08-05DedeCMS会员投稿自动加积分改为投稿审核后加积分