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