Skip to:
Content
Pages
Categories
Search
Top
Bottom

Reply To: What is the best way to add new items to the admin bar?


fishbowl81
Participant

@fishbowl81

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
}
Skip to toolbar