DedeCMS織夢默認的欄目頁使用完整拼音為保存目錄,當我們遇到欄目名稱比較長的時候目錄名稱看起來有點冗長,這時候大多數(shù)站長喜歡使用拼音首字母作為欄目的保存目錄,為此搜集教程,解決DedeCMS如何定義欄目路徑名為拼音縮寫的問題,具體教程如下:
打開dede/catalog.add.php文件:
1、找到代碼(大概在第85行):
$toptypedir = GetPinyin(stripslashes($toptypename));
修改為:
$toptypedir = GetPinyin(stripslashes($toptypename),1);
2、找到代碼(大概在第108行):
$typedir = $toptypedir.'/'.GetPinyin(stripslashes($v));
修改為:
$typedir = $toptypedir.'/'.GetPinyin(stripslashes($v),1);
3、找到代碼(大概在第134行):
$toptypedir = GetPinyin(stripslashes($toptypename));
修改為:
$toptypedir = GetPinyin(stripslashes($toptypename),1);
4、找到代碼(大概在第187行):
$typedir = GetPinyin(stripslashes($typename));
修改為:
$typedir = GetPinyin(stripslashes($typename),1);
修改完成后,再新建欄目就會以拼音縮寫為欄目路徑了,快去試試吧!
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢如何定義欄目路徑名為拼音縮寫