电子邮件地址可以用作用户名吗?

时间:2011-11-10 作者:Steven

是否可以对WP做些什么,以便我能够使用电子邮件地址作为用户名?

我不想为此下载插件。

2 个回复
SO网友:Kevin Langley Jr.

您可以很容易地做到这一点,只需创建一个用户注册页面,并让电子邮件地址字段填写用户名和电子邮件参数,以用于wp\\u insert\\u user()函数。

SO网友:Sterling Hamilton

WordPress在创建用户时使用以下功能:

sanitize\\u用户()

Sanitize username stripping out unsafe characters.

If $strict is true, only alphanumeric characters plus these: _, space, ., -, *, and @ are returned.

Removes tags, octets, entities, and if strict is enabled, will remove all non-ASCII characters. After sanitizing, it passes the username, raw username (the username in the parameter), and the strict parameter as parameters for the filter.
简短回答:没有插件就不行。

资料来源:http://codex.wordpress.org/Function_Reference/sanitize_user

结束

相关推荐