【修改】禁止中文用户名注册-建站综合交流论坛-WordPress-沐光橙香

【修改】禁止中文用户名注册

主题目录下functions.php

或者新建func.php文件第一行写<?php换行插入

/*禁止非英文数字注册*/
function restrict_chinese_usernames($username) {
  $error_msgs = array();
    if (preg_match('/[^\x20-\x7F]/', $username)) {
       if ( empty( $error_msgs ) ) {
        $error_msgs[] = '仅允许字母数字作为用户名';
        }
    }
     if ( ! empty( $error_msgs ) ) {
        wp_send_json( array( 'error' => 1, 'msg' => $error_msgs ) );
    }
    return $username;
}
add_filter('sanitize_user', 'restrict_chinese_usernames', 10, 3);

需要另外支持特殊符号的自己想办法

欢迎访问本站
您的访问时本站的荣幸
希望您能在本站
找到您想要的资源
随便看看