Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Last active July 12, 2016 02:34
Show Gist options
  • Select an option

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

Select an option

Save nathaningram/e16f659e6470b7f54807 to your computer and use it in GitHub Desktop.
//WP Logout Button Shortcode
function ni_Logout() {
$NIlogout = wp_logout_url();
$NIlogoutbutton = '<a class="logout btn" href="'.$NIlogout.'">Logout</a>';
return $NIlogoutbutton;
}
add_shortcode('logout', 'ni_Logout');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment