i recently found that a login url filter is available but i can’t find a solution for the forgot password as well,
for the login url i use this:
function custom_login_url($login_url) {
return ''.get_option('siteurl'). '/login';
}
add_filter('login_url','custom_login_url');
is it possible to do the same for the forgot password?
thanks a lot,
Philip
Yes it’s also possible for the password, by running a filter on
lostpassword_url
, which is basically the password equivalent of the login url..Example
Basically the same as before, just changed the function and hook names.