username_exists

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

“username_exists”是一个 WordPress 函数,用于检查用户名是否存在于 WordPress 数据库中。 此功能可用于在创建新用户之前检查所需用户名是否已在使用中。

过滤给定的用户名是否存在。

return apply_filters( 'username_exists', $user_id, $username );

常见问题

FAQs
查看更多 >