bp_groups_remove_group_type( int $group_id, string $group_type )

Remove type for a group.

Description

Parameters

$group_id

(Required) ID of the user.

$group_type

(Required) Group type.

Return

(bool|WP_Error) $deleted True on success. False or WP_Error on failure.

Source

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

3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
function bp_groups_remove_group_type( $group_id, $group_type ) {
    if ( empty( $group_type ) || ! bp_groups_get_group_type_object( $group_type ) ) {
        return false;
    }
 
    $deleted = bp_remove_object_terms( $group_id, $group_type, 'bp_group_type' );
 
    // Bust the case, if the type has been removed.
    if ( ! is_wp_error( $deleted ) ) {
        wp_cache_delete( $group_id, 'bp_groups_group_type' );
 
        /**
         * Fires just after a group's group type has been removed.
         *
         * @since BuddyPress 2.6.0
         *
         * @param int    $group      ID of the group whose group type has been removed.
         * @param string $group_type Group type.
         */
        do_action( 'bp_groups_remove_group_type', $group_id, $group_type );
    }
 
    return $deleted;
}

Changelog

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