bp_activity_admin_menu_order( array $custom_menus = array() )
Add activity component to custom menus array.
Description
Several BuddyPress components have top-level menu items in the Dashboard, which all appear together in the middle of the Dashboard menu. This function adds the Activity page to the array of these menu items.
Parameters
- $custom_menus
-
(Optional) The list of top-level BP menu items.
Default value: array()
Return
(array) $custom_menus List of top-level BP menu items, with Activity added.
Source
File: bp-activity/bp-activity-admin.php
function bp_activity_admin_menu_order( $custom_menus = array() ) { array_push( $custom_menus, 'bp-activity' ); return $custom_menus; }
Changelog
Version | Description |
---|---|
BuddyPress 1.7.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.