织梦如何使用拼音首字母做栏目名称
织梦
二次开发的时候,往往会遇到这样的问题,使用拼音的首字母昨晚栏目的名称,如何实现呢?
笔记部落
今天给大家介绍方法:找到你的后台栏目,系统默认是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);
查找对应的代码,然后修改保存替换,看看效果吧