bp_dd_create_forums_topics( $topic_data,  $forum_id, array $users = array() )

Function to create topic inside forums

Description

Parameters

$topic_data

(Required)

$forum_id

(Required)

$users

(Optional)

Default value: array()

Return

(bool|int|WP_Error)

Source

File: bp-core/bp-core-tools-default-data.php

1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
function bp_dd_create_forums_topics( $topic_data, $forum_id, $users = array() ) {
    $topic_id = false;
    if ( empty( $users ) ) {
        $users = bp_dd_get_random_users_ids( 0 );
    }
 
    $creator_id = is_object( $users[ array_rand( $users ) ] ) ? $users[ array_rand( $users ) ]->ID : $users[ array_rand( $users ) ];
 
    // Create the initial topic
    $topic_id = bbp_insert_topic(
        array(
            'post_parent'  => $forum_id,
            'post_title'   => $topic_data['name'],
            'post_content' => $topic_data['description'],
            'post_status'  => $topic_data['status'],
            'post_author'  => $creator_id,
        ),
        array( 'forum_id' => $forum_id )
    );
 
    return $topic_id;
}

Changelog

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