織夢模板下載dede源碼欄目列表常見序號(hào)的調(diào)用標(biāo)簽
時(shí)間: 2018-11-29 13:54
閱讀: 次
作者:素材無憂網(wǎng)
我們在制作DEDECMS模板時(shí),源代碼中的[field:global name=autoindex/]標(biāo)簽很好用可以調(diào)用數(shù)字序號(hào),此標(biāo)簽最簡單的用法就是按內(nèi)容條數(shù)來獲取數(shù)字序號(hào),但有的時(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);
標(biāo)簽: