Skip to content

Instantly share code, notes, and snippets.

@krmd
Created May 30, 2014 15:34
Show Gist options
  • Save krmd/a0dd01ceb091d5f297b4 to your computer and use it in GitHub Desktop.
Save krmd/a0dd01ceb091d5f297b4 to your computer and use it in GitHub Desktop.
WooTheme Canvas: Add Login/Logout to Menus
add_filter( 'wp_nav_menu_items', 'add_loginout_link', 10, 2 );
function add_loginout_link( $items, $args ) {
if (is_user_logged_in() && $args->theme_location == 'primary') {
$items .= '<li><a href="'. wp_logout_url() .'">Log Out</a></li>';
}
elseif (!is_user_logged_in() && $args->theme_location == 'primary') {
$items .= '<li><a href="'. site_url('wp-login.php') .'">Log In</a></li>';
}
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment