- This topic has 0 replies, 1 voice, and was last updated 2 years, 8 months ago by .
Viewing 0 reply threads
Viewing 0 reply threads
- You must be logged in to reply to this topic.
Welcome › mkmcst community Forum › Web programming › WordPress › buddypress › Add login and logout links to buddypress main nav
// functions.php
function add_login_logout_link($items, $args)
{
if(is_user_logged_in())
{
$newitems = '<li><a title="Logout" href="'. wp_logout_url('index.php') .'">Logout</a></li>';
$newitems .= $items;
}
else
{
$newitems = '<li><a title="Login" href="'. wp_login_url('index.php') .'">Login</a></li>';
$newitems .= $items;
}
return $newitems;
}
add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2);