欢迎光临
我们一直在努力

WordPress 禁止用户注册某些用户名

建站超值云服务器,限时71元/月

倡萌之前已经推荐过使用 Restrict Usernames 插件限制用户名使用空格,禁止注册某些用户名,禁止用户名包含某些字段,或者强制用户名必须包含某些字段等。

WordPress 禁止用户注册某些用户名

今天再补充一个简单点的方法,直接将下面的代码添加到主题的 functions.php 即可:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * WordPress 禁止用户注册某些用户名
 * https://www.wpdaxue.com/wordPress-username-restrictions.html
 */
function sozot_validate_username($valid, $username) {
	$forbidden = array('directory', 'domain', 'download', 'downloads', 'edit', 'editor', 'email', 'ecommerce', 'forum', 'forums', 'favorite', 'feedback', 'follow', 'files', 'gadget', 'gadgets', 'games', 'guest', 'group', 'groups', 'homepage', 'hosting', 'hostname', 'httpd', 'https', 'information', 'image', 'images', 'index', 'invite', 'intranet', 'indice', 'iphone', 'javascript', 'knowledgebase', 'lists','websites', 'webmaster', 'workshop', 'yourname', 'yourusername', 'yoursite', 'yourdomain');
	$pages = get_pages();
	foreach ($pages as $page) {
		$forbidden[] = $page->post_name;
	}
	if(!$valid || is_user_logged_in() && current_user_can('create_users') ) return $valid;
	$username = strtolower($username);
	if ($valid && strpos( $username, ' ' ) !== false) $valid=false;
	if ($valid && in_array( $username, $forbidden )) $valid=false;
	if ($valid && strlen($username) < 5) $valid=false;
	return $valid;
}
add_filter('validate_username', 'sozot_validate_username', 10, 2);
 
function sozot_registration_errors($errors) {
	if ( isset( $errors->errors['invalid_username'] ) )
		$errors->errors['invalid_username'][0] = __( '错误:该用户名不允许注册!', 'sozot' );
	return $errors;
}
add_filter('registration_errors', 'sozot_registration_errors');

/** * WordPress 禁止用户注册某些用户名 * https://www.wpdaxue.com/wordPress-username-restrictions.html */ function sozot_validate_username($valid, $username) { $forbidden = array(‘directory’, ‘domain’, ‘download’, ‘downloads’, ‘edit’, ‘editor’, ’email’, ‘ecommerce’, ‘forum’, ‘forums’, ‘favorite’, ‘feedback’, ‘follow’, ‘files’, ‘gadget’, ‘gadgets’, ‘games’, ‘guest’, ‘group’, ‘groups’, ‘homepage’, ‘hosting’, ‘hostname’, ‘httpd’, ‘https’, ‘information’, ‘image’, ‘images’, ‘index’, ‘invite’, ‘intranet’, ‘indice’, ‘iphone’, ‘javascript’, ‘knowledgebase’, ‘lists’,’websites’, ‘webmaster’, ‘workshop’, ‘yourname’, ‘yourusername’, ‘yoursite’, ‘yourdomain’); $pages = get_pages(); foreach ($pages as $page) { $forbidden[] = $page->post_name; } if(!$valid || is_user_logged_in() && current_user_can(‘create_users’) ) return $valid; $username = strtolower($username); if ($valid && strpos( $username, ‘ ‘ ) !== false) $valid=false; if ($valid && in_array( $username, $forbidden )) $valid=false; if ($valid && strlen($username) < 5) $valid=false; return $valid; } add_filter(‘validate_username’, ‘sozot_validate_username’, 10, 2); function sozot_registration_errors($errors) { if ( isset( $errors->errors[‘invalid_username’] ) ) $errors->errors[‘invalid_username’][0] = __( ‘错误:该用户名不允许注册!’, ‘sozot’ ); return $errors; } add_filter(‘registration_errors’, ‘sozot_registration_errors’);

你只需将禁止注册的用户名添加到第 6 行的数组即可。

参考资料:https://sozot.com/wordpress-username-restrictions-without-a-plugin/

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » WordPress 禁止用户注册某些用户名
分享到: 更多 (0)