tags:

views:

21

answers:

2

i have a login form for my wp site, but when they type in the wrong user/pass it directs them to the WP login screen. any way i can change this without hacking WPMU core?

A: 

You should use a plugin. A search for "login" on WP Plugins can be helpful, maybe check out this plugin.

Fernando
A: 

you can make the login form (wp-login.php), redirect them back by providing a hidden input text name 'redirect_to' in form that you have written. by using 'redirect_to', Wordpress understand that you want after login user will send to the link

forexample :

[pre]http://xxx.xxx/wp-login.php?redirect_to='http://xxx.xxx' [pre]

justjoe