groups_delete_group( int $group_id )

Delete a group and all of its associated metadata.

Description

Parameters

$group_id

(Required) ID of the group to delete.

Return

(bool) True on success, false on failure.

Source

File: bp-groups/bp-groups-functions.php

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
468
function groups_delete_group( $group_id ) {
 
    /**
     * Fires before the deletion of a group.
     *
     * @since BuddyPress 1.5.0
     *
     * @param int $group_id ID of the group to be deleted.
     */
    do_action( 'groups_before_delete_group', $group_id );
 
    // Get the group object.
    $group = groups_get_group( $group_id );
 
    // Bail if group cannot be deleted.
    if ( ! $group->delete() ) {
        return false;
    }
 
    // Remove all outstanding invites for this group.
    groups_delete_all_group_invites( $group_id );
 
    /**
     * Fires after the deletion of a group.
     *
     * @since BuddyPress 1.0.0
     *
     * @param int $group_id ID of the group that was deleted.
     */
    do_action( 'groups_delete_group', $group_id );
 
    return true;
}

Changelog

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.