dedecms 栏目目录用首字母生成的方法
Posted 追溯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dedecms 栏目目录用首字母生成的方法相关的知识,希望对你有一定的参考价值。
修改dede/catalog.add.php文件
85行 $toptypedir = GetPinyin(stripslashes($toptypename));
修改为 $toptypedir = GetPinyin(stripslashes($toptypename),1);
108 行 $typedir = $toptypedir.\'/\'.GetPinyin(stripslashes($v));
修改为 $typedir = $toptypedir.\'/\'.GetPinyin(stripslashes($v),1);
134行 $toptypedir = GetPinyin(stripslashes($toptypename));
修改为 $toptypedir = GetPinyin(stripslashes($toptypename),1);
187行 $typedir = GetPinyin(stripslashes($typename));
修改为 $typedir = GetPinyin(stripslashes($typename),1);
Editplus编辑器
查找: GetPinyin\\(stripslashes\\(\\$\\w+\\)
替换: \\0,1
以上是关于dedecms 栏目目录用首字母生成的方法的主要内容,如果未能解决你的问题,请参考以下文章