bp_core_load_admin_bar()
Handle the Toolbar/BuddyBar business.
Description
Source
File: bp-core/bp-core-adminbar.php
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | function bp_core_load_admin_bar() { // Show the Toolbar for logged out users. if ( ! is_user_logged_in() && (int) bp_get_option( 'hide-loggedout-adminbar' ) != 1 ) { show_admin_bar( true ); } // Hide the WordPress Toolbar and show the BuddyBar. if ( ! bp_use_wp_admin_bar() ) { _doing_it_wrong( __FUNCTION__ , __( 'The BuddyBar is no longer supported. Please migrate to the WordPress toolbar as soon as possible.' , 'buddyboss' ), '2.1.0' ); // Load deprecated code if not available. if ( ! function_exists( 'bp_core_admin_bar' ) ) { require buddypress()->plugin_dir . 'bp-core/deprecated/2.1.php' ; } // Keep the WP Toolbar from loading. show_admin_bar( false ); // Actions used to build the BP Toolbar. add_action( 'bp_adminbar_logo' , 'bp_adminbar_logo' ); add_action( 'bp_adminbar_menus' , 'bp_adminbar_login_menu' , 2 ); add_action( 'bp_adminbar_menus' , 'bp_adminbar_account_menu' , 4 ); add_action( 'bp_adminbar_menus' , 'bp_adminbar_thisblog_menu' , 6 ); add_action( 'bp_adminbar_menus' , 'bp_adminbar_random_menu' , 100 ); // Actions used to append BP Toolbar to footer. add_action( 'wp_footer' , 'bp_core_admin_bar' , 8 ); add_action( 'admin_footer' , 'bp_core_admin_bar' ); } } |
Changelog
Version | Description |
---|---|
BuddyPress 1.2.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.