This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

BP_Core::bootstrap()

Populate the global data needed before BuddyPress can continue.

Description

This involves figuring out the currently required, activated, deactivated, and optional components.

Source

File: bp-core/classes/class-bp-core.php

	private function bootstrap() {
		/**
		 * Fires before the loading of individual components and after BuddyBoss Core.
		 *
		 * Allows plugins to run code ahead of the other components.
		 *
		 * @since BuddyPress 1.2.0
		 */
		do_action('bp_core_loaded');

		$this->load_components();
		$this->load_integrations();
	}

Changelog

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