欢迎访问服务器技术网-www.fuwuqijishu.com

自动将WordPress内容Email邮箱地址加密防止被收集

网站建设 fuwuqijishu 2年前 (2022-09-04) 84次浏览 0个评论 扫描二维码

有些项目和用户会利用软件对网络上的邮件地址进行收集,然后有针对的群发邮件。如果我们网站采用的是WordPress程序,我们可以采用Antispambot插件自动将网站中邮件Email地址进行加密,在源代码中是看不到邮箱信息的。我们也可以通过无代码实现。

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 );

我们在当前主题的functions.php文件中加上代码,同样可以实现用插件的效果。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2202.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900