add_action( 'user_register', 'checkRegistration', 10, 1 );
function checkRegistration($user_id){
$users = get_users();
if(count($users) >= 100){
wp_die("Превышен лимит регистраций", "Ошибка при регистрации", array( 'back_link' => true, 'exit' => true ));
}
}
add_action('user_profile_update_errors','check_fields',10,3);
if(!function_exists('check_fields')){
function check_fields($errors,$update,$user){
$users=get_users();
if(count($users)>=3){
$errors->add('max_limit','<strong>ERROR</strong>: '.__('Превышен лимит регистраций','VAB'));
// wp_die("Превышен лимит регистраций");
}return $errors;}}