为什么要加密email邮箱地址?
有些项目和用户会利用软件对网络上的邮件地址进行收集,然后有针对的群发邮件。如果我们网站采用的是WordPress程序,在源代码中可以看到邮箱地址,就会被采集。
方法一、采用Antispambot插件自动将网站中邮件Email地址进行加密,在源代码中是看不到邮箱信息的。
方法二、无插件实现法。(推荐)
当前主题的functions.php文件中加上以下代码,同样可以实现用插件的效果。
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 );
 

声明:
本站所有文章,如无特殊说明或标注,均为本站原创发布。
任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。
如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。