Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,662
- How-to & Troubleshooting
- 127,983
- Creating & Extending
- 25,647
- Requests & Feedback
- 9,399
- Third Party Plugins
- 9,725
- Showcase
- 3,320
- Ideas
- 1,346
- Miscellaneous
- 8,853
-
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.
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS