remove_users is no more used.

Source: https://wpfront.com/wordpress-plugins/user-role-editor-plugin/wordpress-capabilities/#remove_users

Use delete_users instead both in a multisite install (network) or a single install.

We also can read some mistakes on the web like here:

Even with the delete_users permission you can not delete users with more permissions that you.

That's wrong, an editor user with delete_users (and list_users) capability can delete an administrator with following code:

function add_editor_delete_users_cap() {
    if ( $role = get_role( 'editor' ) ) {
        if( !$role->has_cap( 'list_users' ) ) $role->add_cap( 'list_users' );
        if( !$role->has_cap( 'delete_users' ) ) $role->add_cap( 'delete_users' );
    }
}
add_action( 'admin_init', 'add_editor_delete_users_cap' );

The difference is really no difference in regular (single install) WordPress. It's in a multisite install (network) where there is a difference.

In multisite, only a Super Admin (who can manage everything on the network) has delete_users capability, while an "admin" (who would own/manage a single site) can remove_users from their site, but cannot delete them from the network.

Hope that helps clarify.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.