欢迎来到入门教程网!

dedecms

当前位置:主页 > CMS教程 > dedecms >

织梦dedecms设置根据文章标题自动获取tag的方法

来源:本站原创|时间:2021-08-05|栏目:dedecms|点击:

修改:\dede\action目录article_add_action.php文件 
在【//写入Tag索引】与【InsertTags($dsql,$tag,$arcID,0,$typeid,$arcrank);】之间插入: 
  
if($autokey==1){ 
    require_once(DEDEADMIN."/../include/pub_splitword_www.php"); 
    $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("/

上一篇:织梦DedeCMS列表页调用tags标签并带链接的实现方法

栏    目:dedecms

下一篇:织梦dedecms如何将上一篇下一篇的文字改为英文

本文标题:织梦dedecms设置根据文章标题自动获取tag的方法

本文地址:https://www.xiuzhanwang.com/a1/dedecms/16834.html

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有