在wordpress上添加中文用户时报错说不支持中文,得到如下错误:错误:请填写用户名。错误:此用户名包含无效字符,请输入有效的用户名。
编辑wp-includes/formatting.PHP,找到函数function sanitize_user( $username,$strict = false ) 在其下面增加一行$strict = false;
PHPcode1">function sanitize_user( $username,$strict = false ) {$strict = false;//加入此行$raw_username = $username;$username = wp_strip_all_tags( $username );$username = remove_accents( $username ); 原文链接:https://www.f2er.com/wordpress/15281.html