Skip to content

Instantly share code, notes, and snippets.

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 ahmadnaser/a2069710ff42a14f414a to your computer and use it in GitHub Desktop.
Save ahmadnaser/a2069710ff42a14f414a to your computer and use it in GitHub Desktop.
logout from wordpress without confirmaiton
//logout from wordpress without confirmaiton
ob_start();
wp_loginout(get_permalink());
$loginoutlink = ob_get_contents();
ob_end_clean();
var logout_content4='<li id="" class="menu-item menu-item-type-post_type menu-item-object-page">'+
'<?php echo $loginoutlink;?></li>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment