Last active
April 10, 2019 17:17
-
-
Save Asikur22/ecbaa25aaa26f432613398273490ade6 to your computer and use it in GitHub Desktop.
[Add Login/Logout Link to Menu] #MenuPanel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function gl_loginout_menu_link( $items, $args ) { | |
if ($args->theme_location == 'primary') { | |
if (is_user_logged_in()) { | |
$items .= '<li class="right"><a href="'. wp_logout_url() .'">'. __("Log Out") .'</a></li>'; | |
} else { | |
$items .= '<li class="right"><a href="'. wp_login_url(get_permalink()) .'">'. __("Log In") .'</a></li>'; | |
} | |
} | |
return $items; | |
} | |
add_filter( 'wp_nav_menu_items', 'gl_loginout_menu_link', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment