首页 > 代码库 > dedecms 文章命名规则

dedecms 文章命名规则

dede cms 文章命名规则:修改include/helpers/channelunit.helper.php

//修行数190

$dsql->SetQuery("SELECT writer FROM #@__archives ORDER BY id DESC LIMIT 0,1");
$dsql->Execute(‘hw‘);
$hotword = "";
while($row=$dsql->GetArray(‘hw‘))
{
   $writer=$row[‘writer‘];
}

if(preg_match("/\{p/", $articleRule))
{
    $articleRule = str_replace(‘{pinyin}‘,GetPinyin($title).‘_‘.$aid,$articleRule);
    $articleRule = str_replace(‘{py}‘,GetPinyin($title,1).‘_‘.$aid,$articleRule);
    $articleRule = str_replace(‘{pwriter}‘,$writer,$articleRule);
}



dedecms 文章命名规则