How to redirect user to previous accessed page after successful login/register in word press
hi, i am using word press to make one site, so i want one functionality in which if user go to suppose blog page mysitename/blog/ he will be redirected to login page say mysitename/login/ and after successfull login/ register the person should be redirected to previous page that is mysitename/blog/ and this should be dynamic for every page i want.
Currenlty i have tried using
if ( !is_user_logged_in() ) {
header("location:mysitename/login/");
}
in blog page which redirects user to login page
but i dont know how to redirect them to previous accessed page.
any help will be appreciated