打开/include/taglib/channel.lib.php,找到
|
$row['target'] = ($row['ispart']==2) ? "target = '_blank'" : "target = '_self'"; //新窗口打开
$row['nofollow'] = ($row['ispart']==2) ? "rel = 'nofollow'" : "rel = 'follow'"; //nofollow属性
需要currentstyle支持这两个属性,继续往下找到
$linkOkstr = str_replace("~typename~",$row['typename'],$linkOkstr);
下面增加
|