Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,839
- How-to & Troubleshooting
- 129,848
- Creating & Extending
- 25,881
- Requests & Feedback
- 9,529
- Third Party Plugins
- 9,828
- Showcase
- 3,316
- Ideas
- 1,386
- Miscellaneous
- 9,177
-
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.