BP_Groups_Member::remove()

Remove the current membership.

Description

Return

(bool) True on success, false on failure.

Source

File: bp-groups/classes/class-bp-groups-member.php

433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
public function remove() {
    global $wpdb;
 
    /**
     * Fires before a member is removed from a group.
     *
     * @since BuddyPress 2.3.0
     *
     * @param BP_Groups_Member $this Current group membership object.
     */
    do_action_ref_array( 'groups_member_before_remove', array( $this ) );
 
    $bp  = buddypress();
    $sql = $wpdb->prepare( "DELETE FROM {$bp->groups->table_name_members} WHERE user_id = %d AND group_id = %d", $this->user_id, $this->group_id );
 
    if ( !$result = $wpdb->query( $sql ) )
        return false;
 
    // Update the user's group count.
    self::refresh_total_group_count_for_user( $this->user_id );
 
    // Update the group's member count.
    self::refresh_total_member_count_for_group( $this->group_id );
 
    /**
     * Fires after a member is removed from a group.
     *
     * @since BuddyPress 2.3.0
     *
     * @param BP_Groups_Member $this Current group membership object.
     */
    do_action_ref_array( 'groups_member_after_remove', array( $this ) );
 
    return $result;
}

Changelog

Changelog
Version Description
BuddyPress 1.6.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.