email_exists

过滤钩子
apply_filters( 'email_exists', $user_id, $email )
参数
  • (int|false) $user_id The user ID associated with the email, or false if the email does not exist.
    Required:
  • (string) $email The email to check for existence.
    Required:
定义位置
相关勾子
domain_existsusername_existsphpmailer_initemail_change_emailadded_existing_user
相关方法
email_existsdomain_existsterm_existstag_existsusername_existsmetadata_exists
引入
5.6.0
弃用
-

email_exists: 这个函数检查一个给定的电子邮件地址是否存在于注册用户的数据库中。如果电子邮件存在,该函数返回用户ID,如果不存在,则返回false。

过滤给定的电子邮件是否存在。

return apply_filters( 'email_exists', $user_id, $email );

常见问题

FAQs
查看更多 >