如何使worldpress注册中文用户名

 

worldpress默认是不能注册中文用户名的。要让其支持中文用户名,解决方法如下:

打开 wp-includes/formatting.php,找到一下代码

730
731
732
function sanitize_user( $username, $strict = false ) {
$raw_username = $username
$username = wp_strip_all_tags($username);

在731行添加代码:

 $strict = false;

完整代码如下:

730
731
732
733
function sanitize_user( $username, $strict = false ) {
 $strict = false;
$raw_username = $username;
 $username = wp_strip_all_tags($username);

 一切搞定

原创文章,转载请注明: 转载自三更灯火——Vanson

本文链接地址: 如何使worldpress注册中文用户名

无觅相关文章插件

分享家:Addthis中国

请留言

使用新浪微博登陆

ŰĦ
Сanmo