wordpress不支持中文用户名解决办法
解决办法比较简单我们只要在functions.php文件中加入如下代码即可:
function ludou_non_strict_login( $username , $raw_username , $strict ) { if ( ! $strict ) return $username ; return sanitize_user( stripslashes ( $raw_username ), false); } add_filter( 'sanitize_user' , 'ludou_non_strict_login' , 10, 3);将以下php代码复制到当前主题目录下的functions.php中,即可让WordPress支持使用中文用户名注册和登录.
查看更多关于wordpress不支持中文用户名解决办法 - WordPress的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did8660