lost password redirect
-
I normally have a lost password filter that sends user to a default login.php
add_filter('lostpassword_url','lostpassword_url_default', 50, 2); function lostpassword_url_default(){ $args = array( 'action' => 'lostpassword' ); return add_query_arg( $args, network_site_url('wp-login.php', 'login') ); }
but suddenly now users get redirected to WpForo. I don’t want that, please advice on why this happened and what to change. Thanks
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘lost password redirect’ is closed to new replies.