bp_dd_import_forums_topics( bool $forums = false )

Import topics in to forums.

Description

Parameters

$forums

(Optional) We can import random groups or work with a predefined list.

Default value: false

Return

(array)

Source

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

1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
function bp_dd_import_forums_topics( $forums = false ) {
    $topics     = array();
    $topics_ids = bp_get_option( 'bp_dd_imported_topic_ids', array() );
 
    if ( ! bp_is_active( 'forums' ) ) {
        return $topics_ids;
    }
 
    if ( empty( $forums ) ) {
        $forums = bp_dd_get_random_forums_ids( 0 );
    }
 
    $users = bp_dd_get_random_users_ids( 0 );
 
    require( BP_DEFAULT_DATA_DIR . 'data/forums_topics.php' );
    foreach ( $forums as $forum_id ) {
        $topic = (array) array_rand( $topics, absint( rand( 2, count( $topics ) ) ) );
        foreach ( $topic as $topic_key ) {
            $topic_data = $topics[ $topic_key ];
 
            // Create the initial topic
            $topic_id = bp_dd_create_forums_topics( $topic_data, $forum_id, $users );
 
            if ( ! empty( $topic_id ) ) {
                $topics_ids[] = $topic_id;
            }
        }
    }
 
    if ( ! empty( $topics_ids ) ) {
        /** @noinspection PhpParamsInspection */
        bp_update_option( 'bp_dd_imported_topic_ids', array_unique( $topics_ids ) );
    }
 
    return $topics_ids;
}

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.