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::setup_actions()

Set up the default hooks and actions.

Description

Source

File: class-buddypress.php

786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
private function setup_actions() {
 
    // Add actions to plugin activation and deactivation hooks
    add_action( 'activate_'   . $this->basename, 'bp_activation'   );
    add_action( 'deactivate_' . $this->basename, 'bp_deactivation' );
 
    // If BuddyPress is being deactivated, do not add any actions
    if ( bp_is_deactivation( $this->basename ) ) {
        return;
    }
 
    // Array of BuddyPress core actions
    $actions = array(
        'setup_theme',              // Setup the default theme compat
        'setup_current_user',       // Setup currently logged in user
        'register_post_types',      // Register post types
        'register_post_statuses',   // Register post statuses
        'register_taxonomies',      // Register taxonomies
        'register_views',           // Register the views
        'register_theme_packages'// Register bundled theme packages
        'load_textdomain',          // Load textdomain
        'add_rewrite_tags',         // Add rewrite tags
        'generate_rewrite_rules'    // Generate rewrite rules
    );
 
    // Add the actions
    foreach( $actions as $class_action ) {
        if ( method_exists( $this, $class_action ) ) {
            add_action( 'bp_' . $class_action, array( $this, $class_action ), 5 );
        }
    }
 
    /**
     * Fires after the setup of all BuddyPress actions.
     *
     * Includes bbp-core-hooks.php.
     *
     * @since BuddyPress 1.7.0
     *
     * @param BuddyPress $this. Current BuddyPress instance. Passed by reference.
     */
    do_action_ref_array( 'bp_after_setup_actions', array( &$this ) );
}

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.