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.

BuddyPress::constants()

Bootstrap constants.

Description

Source

File: class-buddypress.php

249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
private function constants() {
 
    // Place your custom code (actions/filters) in a file called
    // '/plugins/bp-custom.php' and it will be loaded before anything else.
    if ( file_exists( WP_PLUGIN_DIR . '/bp-custom.php' ) ) {
        require( WP_PLUGIN_DIR . '/bp-custom.php' );
    }
 
    // Path and URL
    if ( ! defined( 'BP_PLUGIN_DIR' ) ) {
        define( 'BP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    }
 
    if ( ! defined( 'BP_PLUGIN_URL' ) ) {
        define( 'BP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    }
 
    // Legacy forum constant - supported for compatibility with bbPress 2.
    if ( ! defined( 'BP_FORUMS_PARENT_FORUM_ID' ) ) {
        define( 'BP_FORUMS_PARENT_FORUM_ID', 1 );
    }
 
    // Legacy forum constant - supported for compatibility with bbPress 2.
    if ( ! defined( 'BP_FORUMS_SLUG' ) ) {
        define( 'BP_FORUMS_SLUG', 'forums' );
    }
 
    // Define a slug, if necessary.
    if ( ! defined( 'BP_FOLLOW_SLUG' ) ) {
        define( 'BP_FOLLOW_SLUG', $this->id );
    }
 
    // Only applicable to those running trunk
    if ( ! defined( 'BP_SOURCE_SUBDIRECTORY' ) ) {
        define( 'BP_SOURCE_SUBDIRECTORY', '' );
    }
 
    // Define on which blog ID BuddyPress should run
    if ( ! defined( 'BP_ROOT_BLOG' ) ) {
 
        // Default to use current blog ID
        // Fulfills non-network installs and BP_ENABLE_MULTIBLOG installs
        $root_blog_id = get_current_blog_id();
 
        // Multisite check
        if ( is_multisite() ) {
 
            // Multiblog isn't enabled
            if ( ! defined( 'BP_ENABLE_MULTIBLOG' ) || ( defined( 'BP_ENABLE_MULTIBLOG' ) && (int) constant( 'BP_ENABLE_MULTIBLOG' ) === 0 ) ) {
                // Check to see if BP is network-activated
                // We're not using is_plugin_active_for_network() b/c you need to include the
                // /wp-admin/includes/plugin.php file in order to use that function.
 
                // get network-activated plugins
                $plugins = get_site_option( 'active_sitewide_plugins');
 
                // basename
                $basename = basename( constant( 'BP_PLUGIN_DIR' ) ) . '/bp-loader.php';
 
                // plugin is network-activated; use main site ID instead
                if ( isset( $plugins[ $basename ] ) ) {
                    $current_site = get_current_site();
                    $root_blog_id = $current_site->blog_id;
                }
            }
 
        }
 
        define( 'BP_ROOT_BLOG', $root_blog_id );
    }
 
    // The search slug has to be defined nice and early because of the way
    // search requests are loaded
    //
    // @todo Make this better
    if ( ! defined( 'BP_SEARCH_SLUG' ) ) {
        define( 'BP_SEARCH_SLUG', 'search' );
    }
}

Changelog

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