Skip to content

Instantly share code, notes, and snippets.

@joshfitzgerald
Forked from melissacabral/wp-login.php
Created July 8, 2013 04:36
Show Gist options
  • Save joshfitzgerald/5946255 to your computer and use it in GitHub Desktop.
Save joshfitzgerald/5946255 to your computer and use it in GitHub Desktop.
<?php
//show the form if the user is not logged in
if( !is_user_logged_in() ):
wp_login_form();
else:
$redirect = home_url();
echo '<a href="'.wp_logout_url( $redirect ).'">Log Out</a>';
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment