最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
WordPress禁止没有Gravatar头像的邮箱提交评论
时间:2022-06-25 18:54:53 编辑:袖梨 来源:一聚教程网
最近被垃圾评论弄烦了,有些目测是人工评论,但是带着广告链接,看着恶心,大部分没有Gravatar头像,于是本博决定阻止掉没有头像的访客正常提交评论,
编辑所用主题的functions.php文件,加入下面的代码:
代码如下 | 复制代码 |
/* * @author:vfhky 2013年09月11日20:23 * @param string $email 用户提交的表单中的email字段 * @return int 0:无gravatar头像; 1:有gravatar头像 **/ function vfhky_checkgravatar($email) { $email_hash = md5(strtolower(trim($email))); $check_uri = 'http://www.gravatar.com/avatar/'.$email_hash.'?d=404'; $headers = @get_headers($check_uri); if (!preg_match("|200|", $headers[0])) { return 0; } else { return 1; } } |
本博客使用了Willin Kan大神的ajax提交评论,编辑comments-ajax.php,找到下面的代码:
代码如下 | 复制代码 |
if ( get_option('require_name_email') && !$user->ID ) { 修改为: if ( get_option('require_name_email') && !$user->ID ) { |
相关文章
- 《彩色点点战争》推图常用三大主c玩法详解 01-23
- 《燕云十六声》池鱼林木任务攻略 01-23
- 《大连地铁e出行》查看行程记录方法 01-23
- 《明日方舟》2025春节限定干员余角色介绍 01-23
- 《崩坏:星穹铁道》万敌光锥搭配攻略 01-23
- 《燕云十六声》一药千金任务攻略 01-23