POST TIME:2020-03-31 12:03
織夢程序默認添加欄目的時候使用拼音默認的中文全拼,當遇到欄目名稱比較長的時候目錄名稱看起來有點冗長,我們有時候為了方便直接填寫欄目名稱,文件保存目錄的欄目拼音我們都是默認的,懶得修改的話欄目拼寫長的話就好難看,這時候大多數(shù)站長喜歡使用拼音首字母作為欄目的保存目錄。那么怎么讓他自動保存為欄目拼音的首字母為目錄呢?這就需要修改程序文件了。
首先找到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);
修改完成后趕快保存后添加幾個欄目頁測試吧,是不是已經(jīng)搞定了欄目拼音首字母命名呢?
如果大家還有什么好的織夢秘訣的話,分享出來!