Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,841
- How-to & Troubleshooting
- 129,857
- Creating & Extending
- 25,886
- Requests & Feedback
- 9,532
- Third Party Plugins
- 9,828
- Showcase
- 3,316
- Ideas
- 1,402
- Miscellaneous
- 9,177
-
add_action( 'bp_adminbar_menus', 'bp_adminbar_custom_menu', 40 );
function bp_adminbar_custom_menu() {
?>
<li>
<a>"<?php _e( 'Custom Pulldown', 'buddypress' ) ?></a>
<ul>List Item</ul>
</li>
<?php
}