我在网上使用免费的 Wordpress。我想更改链接的颜色。当我在http://www.w3schools.com测试这段代码时,它运行良好:
<!DOCTYPE html>
<html>
<body>
<table style="background-color:white;width:100%;">
<tbody>
<tr valign="TOP">
<td> <img border="0" src="http://www.kuffelcreek.com/favori14.jpg" width="430" height="480" /></td>
<td>
<p><div style="color: #FF0000"><a href="google" style="text-decoration:none;" onmouseover="this.style.color='#FF0000'" onmouseout="this.style.color='#000000'">google link</a></div></p>
description
</td>
</tr>
</tbody>
</table>
</body>
</html>
但是,当我将这段代码粘贴到 Wordpress 中然后更新它时,它会自动删除onmouseover="this.style.color='#FF0000'" onmouseout="this.style.color='#000000'"
,代码变成了这样:
<table style="background-color:white;width:100%;">
<tbody>
<tr valign="TOP">
<td> <img border="0" src="http://www.kuffelcreek.com/favori14.jpg" width="430" height="480" /></td>
<td>
<p><div style="color:#FF0000;"><a href="google" style="text-decoration:none;">google link</a></div></p>
description
</td>
</tr>
</tbody>
</table>
如何避免 Wordpress 删除我的代码?如何更改 Wordpress 中链接的颜色?