@fishbowl81
Not recently active
-
Anonymous replied to the topic What is the best way to add new items to the admin bar? in the forum Creating & Extending 15 years, 8 months ago
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
}