Skip to content

Instantly share code, notes, and snippets.

@daniloparrajr
Created February 19, 2018 03:44
Show Gist options
  • Save daniloparrajr/f23b003514354ddfdc973c5704dd4299 to your computer and use it in GitHub Desktop.
Save daniloparrajr/f23b003514354ddfdc973c5704dd4299 to your computer and use it in GitHub Desktop.
Wordpress Redirect user
<?php
function themeprefix_redirect_user()
{
if( is_page( 'login' ) && ! is_user_logged_in() )
{
wp_redirect( home_url( '/signup/' ) );
die;
}
}
add_action( 'template_redirect', 'themeprefix_redirect_user' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment