POST TIME:2019-03-20 14:30
dedecms源碼中的[field:global name=autoindex/]標(biāo)簽很好用可以調(diào)用數(shù)字序號,此標(biāo)簽最簡單的用法就是按內(nèi)容條數(shù)來獲取數(shù)字序號,但有的時(shí)候發(fā)現(xiàn)使用該標(biāo)簽時(shí)無效比如頻道頁。
channelartlist標(biāo)簽下可以使用{dede:global name=’itemindex’/}
dede:channel標(biāo)簽下直接使用[field:global name=autoindex/]
dede:channel標(biāo)簽當(dāng)前樣式currentstyle下時(shí),需要修改文件,channel.lib.php文件,就可以使用~autoindex~ 來調(diào)用了
$linkOkstr = $currentstyle;
$row['typelink'] = GetOneTypeUrlA($row);
$linkOkstr = str_replace(“~rel~”,$row['rel'],$linkOkstr);
$linkOkstr = str_replace(“~id~”,$row['id'],$linkOkstr);
$linkOkstr = str_replace(“~typelink~”,$row['typelink'],$linkOkstr);
$linkOkstr = str_replace(“~typename~”,$row['typename'],$linkOkstr);
后面加上
$linkOkstr = str_replace(“~autoindex~”,$GLOBALS['autoindex']+1,$linkOkstr);