Skip to content

Instantly share code, notes, and snippets.

@simonlk
Created June 9, 2014 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simonlk/bb421f8b676af3fba2c3 to your computer and use it in GitHub Desktop.
Save simonlk/bb421f8b676af3fba2c3 to your computer and use it in GitHub Desktop.
Add login/logout menu to WordPress main menu
/* =====================================================
Login/logout menu button
===================================================== */
add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2);
function add_login_logout_link($items, $args) {
if( $args->theme_location == 'primary-menu' ) {
ob_start();
wp_loginout(get_permalink());
$loginoutlink = ob_get_contents();
ob_end_clean();
$items .= '<li class="fr">'. $loginoutlink .'</li>';
}
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment