Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,027
- How-to & Troubleshooting
- 129,663
- Creating & Extending
- 25,794
- Requests & Feedback
- 9,497
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,374
- Miscellaneous
- 9,181
-
If you simply want to add links to the BuddyBar, then hook into the “bp_adminbar_menus” action.
eg.
function my_custom_adminbar_links() {
echo '<li>Pretend this is a link!</li>';
}
add_action( 'bp_adminbar_menus', 'my_custom_adminbar_links' );
Put this snippet somewhere in your theme’s functions.php.