Redirect user to specific link after login
The login_redirect filter should works (add this code into your theme functions.php): function my_login_redirect( $redirect_to, $request, $user ) { $redirect_to = home_url($user->user_nicename); return $redirect_to; } add_filter( ‘login_redirect’, ‘my_login_redirect’, 10, 3 ); For “PROFILE” in the menu (add this code into your template file where you want to display it): if ( is_user_logged_in() ) { $current_user … Read more