BuddyPress Profile Link
-
I want to create a “My Profile” link in one of my menus and I found the following code:
// Filter wp_nav_menu() to add profile link add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' ); function my_nav_menu_profile_link($menu) { if (!is_user_logged_in()) return $menu; else $profilelink = '<li><a href="' . bp_loggedin_user_domain( '/' ) . '">' . __('My Profile') . '</a></li>'; $menu = $menu . $profilelink; return $menu; }
However it applies the My Profile link to ALL my menus. I only want it to apply to the menu I’ve registered as ‘usernav’
Any ideas?? Thanks!
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘BuddyPress Profile Link’ is closed to new replies.