Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,991
- How-to & Troubleshooting
- 129,408
- Creating & Extending
- 25,786
- Requests & Feedback
- 9,486
- Third Party Plugins
- 9,786
- Showcase
- 3,318
- Ideas
- 1,393
- Miscellaneous
- 9,169
-
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