I have made a login form on the front-end of my site using wp_login_form()
. However, when the user types in an incorrect username/password they are redirected to the wp-admin login form.
How can you instead display any error messages above the login form? Ideally, I don’t want the user to ever have to see the WordPress admin section.
I have tried using the redirect_invalid_login()
hook but this doesn’t seem to work?
just add the following code to your function.php.
it will redirect back user from where the login form is submitted.