停止在Wordpress网站上的用户注册

时间:2019-06-10 13:29:45

标签: php wordpress

我几乎没有禁用注册的WordPress网站,但是仍然可以看到人们正在注册为admin,过了一会儿,他们重置了密码并登录到管理面板。服务器。如何从此类注册中保护我的网站? URL mydomain.comwp-login.php?action=register表示已禁用,并重定向到登录页面。

2 个答案:

答案 0 :(得分:3)

设置->常规->取消选中“任何人都可以注册”

答案 1 :(得分:0)

成功注册后,WordPress会立即调用“ user_register”挂钩。您可以在那里执行任务。

add_action( 'user_register', 'myplugin_registration_save', 10, 1 );

function myplugin_registration_save( $user_id ) {
  /** Here You can disable user's status or change user's credentials on the behalf of '$user_id' so that it cannot be logged into your system. You can remove the user as well. */
}