Skip to content

Instantly share code, notes, and snippets.

@butlerblog
Last active September 23, 2015 13:33
Show Gist options
  • Save butlerblog/9d5b94310e0c9fd58b77 to your computer and use it in GitHub Desktop.
Save butlerblog/9d5b94310e0c9fd58b77 to your computer and use it in GitHub Desktop.
Create WP login link with redirect back to original page.
<?php
global $wp;
$current_url = home_url( add_query_arg( array(), $wp->request ) );
?>
<a href="<?php echo wp_login_url( $current_url ); ?>">Log In</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment