Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: My Profile Link


nicolagreco
Participant

@nicolagreco

it seems good, make a function and add it to the admin bar using add_action

for exampe:

function my_own_function() {
if ( is_user_logged_in() ) { ?>
<li class="selected"><?php bp_loggedinuser_link () ?></li>
<?php } else { ?>
<li><?php bp_loggedinuser_link () ?></li>
}
}
add_action( 'bp_adminbar_menus', 'my_own_function', 6 );

6 is the position you want on the admin bar.

I hope i undestand your question

Skip to toolbar