I need to know what the wp specifications for the usernames are. Like allowed minimum and maximum length, are special characters like ü,ö,ä,ß accepted,..?
Unfortunately I couldn’t find any insight on this in the interweb. Do you have any?
I need to know what the wp specifications for the usernames are. Like allowed minimum and maximum length, are special characters like ü,ö,ä,ß accepted,..?
Unfortunately I couldn’t find any insight on this in the interweb. Do you have any?
Comments are closed.
I think the answer is in the source.
So, the code strips tags, octets, and html entities. And it replaces accented characters with unaccented ones via the
remove_accents
function, which is fairly lengthy. Other characters get through unless$strict
istrue
(default isfalse
), in which case only ASCII characters are allowed.The maximum login name length would be the database limit for the user_login column— 60 characters. The minimum, as best I can tell, is 1.