原文来自:https://www.zixuephp.com
Dedecms导航栏目目录路径地址用首字母生成
想必很多朋友都觉得dede默认的栏目目录路径如果你不手动修改路径地址的话那么他就会自动生成你填写的中文字拼音,这样有的朋友导航名字复杂生成出来的也不好看,所以下面给你介绍一个方法,是修改导航栏目目录路径用你填写的中文字的拼音首字母来生成,亲自测试可以使用.
首先找到打开并修改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);
修改好后更新系统缓存就可以了.