最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
WordPress限制有头像的用户才要发评论
时间:2022-06-25 18:57:25 编辑:袖梨 来源:一聚教程网
代码如下 | 复制代码 |
function Bing_validate_gravatar( $comment ){ $headers = @get_headers( 'http://www.gravatar.com/avatar/' . md5( strtolower( trim( $comment['comment_author_email'] ) ) ) . '?d=404' ); if( preg_match( '|200|', $headers[0] ) ) return $comment; $text = __( '请使用有头像的邮箱', 'Bing' ); if( function_exists( 'err' ) ) return err( $text ); return wp_die( $text ); } add_action( 'preprocess_comment', 'Bing_validate_gravatar' ); |
代码加到 functions.php 即可,不过由于 Gravatar 的服务器在国外,评论的时候可能略影响评论提交速度。
相关文章
- 《彩色点点战争》推图常用三大主c玩法详解 01-23
- 《燕云十六声》池鱼林木任务攻略 01-23
- 《大连地铁e出行》查看行程记录方法 01-23
- 《明日方舟》2025春节限定干员余角色介绍 01-23
- 《崩坏:星穹铁道》万敌光锥搭配攻略 01-23
- 《燕云十六声》一药千金任务攻略 01-23