groups_remove_data_for_user( int $user_id )
Delete all group membership information for the specified user.
Description
Parameters
- $user_id
-
(Required) ID of the user.
Source
File: bp-groups/bp-groups-functions.php
function groups_remove_data_for_user( $user_id ) { BP_Groups_Member::delete_all_for_user( $user_id ); /** * Fires after the deletion of all data for a user. * * @since BuddyPress 1.1.0 * * @param int $user_id ID of the user whose data is being deleted. */ do_action( 'groups_remove_data_for_user', $user_id ); }
Changelog
Version | Description |
---|---|
BuddyPress 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.