Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created December 28, 2015 02:45
Show Gist options
  • Select an option

  • Save nathaningram/3f1a4c0ef2cd705fbee9 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/3f1a4c0ef2cd705fbee9 to your computer and use it in GitHub Desktop.
// Add Logout directly to admin menu
function ni_add_toolbar_items($admin_bar){
$admin_bar->add_menu( array(
'id' => 'ni-logout',
'title' => 'Log Out',
'href' => wp_logout_url()
));
}
add_action('admin_bar_menu', 'ni_add_toolbar_items', 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment