摘要:由于wordpress为国外的开源主题,所以在注册和数据库链接时默认用的是英文注册模式。
由于wordpress为国外的开源主题,所以在注册和数据库链接时默认用的是英文注册模式。
但是为了符号国人使用wp的习惯我们可以通过以下两种方法达到中文名注册的功能。
方法一:可使用中文名注册插件来解决 插件名:Ludou custom register
方法二;将以下php代码复制到当前主题目录下的functions.php中,即可让WordPress支持使用中文用户名注册和登录:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
function dawa_sanitize_user ($username, $raw_username, $strict) {
$username = wp_strip_all_tags( $raw_username );
$username = remove_accents( $username );
// Kill octets
$username = preg_replace( ‘|%([a-fA-F0-9][a-fA-F0-9])|’, ”, $username );
$username = preg_replace( ‘/&.+?;/’, ”, $username ); // Kill entities
// 网上很多教程都是直接将$strict赋值false,
// 这样会绕过字符串检查,留下隐患
if ($strict) {
$username = preg_replace (‘|[^a-z\p{Han}0-9 _.\-@]|iu’, ”, $username);
}
$username = trim( $username );
// Consolidate contiguous whitespace
$username = preg_replace( ‘|\s+|’, ‘ ‘, $username );
return $username;
}
add_filter (‘sanitize_user’, ‘dawa_sanitize_user’, 10, 3);
|
来源:http://www.wazhuti.com/433.html