DEDECMS修改文章TAG 给TAG加链接 去掉TAG字数限制
1、给TAG加链接:PHP Code复制内容到剪贴板
[*]{dede:tag sort='new' getall='0'}
[*]<a href=''></a>
[*]{/dede:tag}
就可以调用出本文对应的TAG,并且是带链接的。。。
2、去掉系统默认TAG标签的字数限制:
第一步:修改数据库中表dede_tagindex 和dede_taglist的tag字段属性:varchar(12)修改为varchar(255)
第二步:修改源码,在include/archives.func.php中查找:if(isset($tag)
修改为:if(isset($tag)
在include/archives.func.php中查找:if(isset($tag)
修改为:if(isset($tag)
这样就行了!
文档来源:脚本之家https://www.jb51.net/cms/386726.html
页:
[1]