Skip to content

Instantly share code, notes, and snippets.

@jamiemitchell
Last active December 16, 2015 12:08
Show Gist options
  • Save jamiemitchell/5432055 to your computer and use it in GitHub Desktop.
Save jamiemitchell/5432055 to your computer and use it in GitHub Desktop.
Add login/logout link to naviagation menu
<?php
/*Add login/logout link to naviagation menu
------------------------------------------------------------ */
function add_login_out_item_to_menu( $items, $args ){
//change theme location with your them location name
if( is_admin() || $args->theme_location != 'primary' )
return $items;
$redirect = ( is_home() ) ? false : get_permalink();
if( is_user_logged_in( ) )
$link = '<a href="' . wp_logout_url( $redirect ) . '" title="' . __( 'Logout' ) .'">' . __( 'Logout' ) . '</a>';
else $link = '<a href="' . wp_login_url( $redirect ) . '" title="' . __( 'Login' ) .'">' . __( 'Login' ) . '</a>';
return $items.= '<li id="log-in-out-link" class="menu-item menu-type-link">'. $link . '</li>';
}add_filter( 'wp_nav_menu_items', 'add_login_out_item_to_menu', 50, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment