在wordpress主題的functions.php文件中加入一段代碼即可讓wordpress支持中文用戶名,。
代碼如下:
function zyku_non_strict_login( $username, $raw_username, $strict ) { if( !$strict ) return $username; return sanitize_user(stripslashes($raw_username), false);}add_filter('sanitize_user', 'zyku_non_strict_login', 10, 3);