How do I redirect users back to my blog's main page after they login?
Answer Posted / Parul Jaiswal
To redirect users back to your blog's main page after they log in, you can add the following code to your theme's functions.php file: nn`function redirect_after_login() { wp_redirect(home_url()); exit; } add_action('wp_login', 'redirect_after_login');`
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers