This function has been deprecated. BuddyPress 2.1.0 instead.
bp_adminbar_thisblog_menu()
Description
Source
File: bp-core/deprecated/buddypress/2.1.php
function bp_adminbar_thisblog_menu() {
if ( current_user_can( 'edit_posts' ) ) {
echo '<li id="bp-adminbar-thisblog-menu"><a href="' . admin_url() . '">';
_e( 'Dashboard', 'buddyboss' );
echo '</a>';
echo '<ul>';
echo '<li class="alt"><a href="' . admin_url() . 'post-new.php">' . __( 'New Post', 'buddyboss' ) . '</a></li>';
echo '<li><a href="' . admin_url() . 'edit.php">' . __( 'Manage Posts', 'buddyboss' ) . '</a></li>';
echo '<li class="alt"><a href="' . admin_url() . 'edit-comments.php">' . __( 'Manage Comments', 'buddyboss' ) . '</a></li>';
do_action( 'bp_adminbar_thisblog_items' );
echo '</ul>';
echo '</li>';
}
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 2.1.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.