Changing profile link from wp-admin to bbpress profile
-
I have the below code in my menu to add login & register. it is working fine but I just want to redirect the profile link to bbpress profile page instead of going to wp-login. Currently user role displays in the place of register after logged in, it will be great if some one help me to get “Welcome username” and link to bbpress profile page.
Thanks so much in advance…
add_filter(‘wp_nav_menu_items’, ‘add_login_logout_link’, 10, 2);
function add_login_logout_link($items, $args) {
if( $args->theme_location == ‘top-menu’ ) {
$loginoutlink = wp_loginout(‘index.php’, false);
$registerlink = wp_register(”, ”, false);
$items .= ‘<li class=”menu-item login”>’. $loginoutlink .” . ‘<li class=”menu-item register”>’ . $registerlink . ”;
}
return $items;
}
- You must be logged in to reply to this topic.