自动文章关键词后链接不变色的方法
include/ 目录下,arc.archives.class.php,在源代码1207行
$kaarr[] = "<a href='$key_url' target='_blank'>$key</a>";
改成:$kaarr[] = "<a style=" text-decoration: none; color: inherit;" href='$key_url' target='_blank'>$key</a>";
也就是说 在 a href 后面 添加 style='text-decoration:none; color:inherit;'
