Home › Forums › WordPress › Login › Login/Logout In the Menu
Tagged: logout, menu, wordpress
add_filter( 'wp_nav_menu_items', 'wti_loginout_menu_link', 10, 2 ); function wti_loginout_menu_link( $items, $args ) { if (is_user_logged_in()) { $items .= '<li class="right"><a href="'. wp_logout_url() .'">'. __("LogOut") .'</a></li>'; } return $items; }
You must be logged in to reply to this topic.