打开/templets/default/list_article.htm文件
找到
<small>好评:</small>[field:scores/]
在它后面加上
<small>标签:</small>    
[field:id runphp='yes']    
global $cfg_cmspath;        
$tags = GetTags(@me);        
$revalue = '';        
$tags = explode(',', $tags);        
foreach($tags as $key => $value){
            if($value){
                $revalue .= '<a href="'.$cfg_cmspath.'/tags.php?/'.$value.'/">'.$value.'</a> ';          
   }      
  }        
@me = $revalue;    
[/field:id]