I need to show BuddyPress menu item just specific roles and hide all other users.
I have 2 user roles like subscriber and author.
For example; I want to show my friends only to the authors and to me. None of the other subscribers can see.
I can hide menu items with this code in functions.php ;
function bp_remove_nav_item() {
global $bp;
bp_core_remove_nav_item( 'buddyblog' );
}
add_action( 'wp', 'bp_remove_nav_item' );
How can I edit this for excepting to me and the authors ?