BBP_Forums_Group_Extension::new_forum( type $forum_args = array() )

Creating a group forum or category (including root for group)

Description

Parameters

$forum_args

(Optional)

Default value: array()

Return

(if) no forum_id is available

Source

File: bp-forums/groups.php

625
626
627
628
629
630
631
632
633
634
635
636
637
public function new_forum( $forum_args = array() ) {
 
    // Bail if no forum_id was passed
    if ( empty( $forum_args['forum_id'] ) )
        return;
 
    // Validate forum_id
    $forum_id = bbp_get_forum_id( $forum_args['forum_id'] );
    $group_id = !empty( $forum_args['group_id'] ) ? $forum_args['group_id'] : bp_get_current_group_id();
 
    bbp_add_forum_id_to_group( $group_id, $forum_id );
    bbp_add_group_id_to_forum( $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.