bbp_remove_forum_id_from_all_groups( type $forum_id )

Remove a forum from all groups

Description

Parameters

$forum_id

(Required)

Source

File: bp-forums/functions.php

523
524
525
526
527
528
529
530
531
532
533
function bbp_remove_forum_id_from_all_groups( $forum_id = 0 ) {
 
    // Validate
    $forum_id  = bbp_get_forum_id( $forum_id );
    $group_ids = bbp_get_forum_group_ids( $forum_id );
 
    // Loop through groups and remove this forum from each one
    foreach ( (array) $group_ids as $group_id ) {
        bbp_remove_forum_id_from_group( $forum_id, $group_id );
    }
}

Changelog

Changelog
Version Description
bbPress (r3653) 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.