Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created September 14, 2013 21:20
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 theukedge/6565740 to your computer and use it in GitHub Desktop.
Save theukedge/6565740 to your computer and use it in GitHub Desktop.
<?php
// LOGOUT LINK IN MENU
function diww_menu_logout_link( $nav, $args ) {
$logoutlink = '<li><a href="'.wp_logout_url().'">Logout</a></li>';
if( $args->menu->term_id == '5' ) {
return $nav.$logoutlink ;
} else {
return $nav;
}
}
add_filter('wp_nav_menu_items','diww_menu_logout_link', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment