在tags列表頁獲取當(dāng)前tag的ID方法一:
在動態(tài)頁面中使用
<?=intval($_GET['tagid'])?>
在tags列表頁獲取當(dāng)前tag的ID方法二:
1、編輯e\tags\index.php,找到 $listtemp=str_replace('[!--newsnav--]',$url,$listtemp);//位置導(dǎo)航 ,大概在196行左右
2、在下面插入一行:
$listtemp=str_replace('[!--self.classid--]',$tagid,$listtemp);//tagid
3、然后就可以在列表模板里用[!--self.classid--]調(diào)用,顯示當(dāng)前tag的id了……