几乎每个人都会遭到垃圾邮件的困扰,其实很多情况下,是由于我们的邮箱地址被恶意采集造成的,如果你使用WordPress建站,那你可以使用一段简单的代码让WordPress转义文章和评论中的邮箱地址,以防被恶意采集。
只需要在wordpress主题的 functions.php 的最后一个 ?> 前添加下面的代码即可:
1 2 3 4 5 6 7 8 9 10 11 |
function security_remove_emails($content) { $pattern = '/([a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,4})/i'; $fix = preg_replace_callback($pattern,"security_remove_emails_logic", $content); return $fix; } function security_remove_emails_logic($result) { return antispambot($result[1]); } add_filter( 'the_content', 'security_remove_emails', 20 ); add_filter( 'widget_text', 'security_remove_emails', 20 ); |
该代码是通过wordpress的antispambot函数来转义邮箱地址的,添加以上代码后,你可以尝试你的某篇文章中输入一个Email地址,更新后查看这篇文章的源代码,就会看到转义后的邮箱地址。
如Email地址:john@a.com
转义后,源代码中看到的是:john@a.com
邮箱地址采集器都是通过源代码来采集Email地址的,转义后的内容对它们来说几乎是无法识别的。虽然在源代码中你会看到一堆乱码,但是你的文章和评论中,我们还是可以看到正常的Email地址,并可以自由地复制的。