当前位置:  首页>>建站教程>>织梦教程
广告合作

织梦dedecms栏目目录用首字母生成的方法

2019-07-22 15:30:50      站长源码库      741      0

织梦dedecms栏目目录用首字母生成的方法

修改dede/catalog.add.php文件 

1.找到:

$toptypedir = GetPinyin(stripslashes($toptypename));

修改为

$toptypedir = GetPinyin(stripslashes($toptypename),1);


2.找到:

$typedir = $toptypedir.'/'.GetPinyin(stripslashes($v));

修改为

$typedir = $toptypedir.'/'.GetPinyin(stripslashes($v),1);


3.找到:

$toptypedir = GetPinyin(stripslashes($toptypename));

修改为

$toptypedir = GetPinyin(stripslashes($toptypename),1);


4.找到:

$typedir = GetPinyin(stripslashes($typename));

修改为

$typedir = GetPinyin(stripslashes($typename),1);


TAG织梦dedecms首字母生成
评论(0)条