bp_init_background_updater()

Fire the ‘bp_init_background_updater’ action, where BP updates data.

Description

Source

File: bp-core/bp-core-dependency.php

535
536
537
538
539
540
541
542
543
544
545
546
547
function bp_init_background_updater() {
    global $background_updater;
 
    include_once buddypress()->plugin_dir . 'bp-core/classes/class-bp-background-updater.php';
    $background_updater = new BP_Background_Updater();
 
    /**
     * Fires inside the 'bp_init_background_updater' function, where BP updates data.
     *
     * @since BuddyBoss 1.0.0
     */
    do_action( 'bp_init_background_updater' );
}

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.