1 comment

  1. If you only want to adjust the link of the lost password page, then there is a designated filter for that:

    function wpse_133647_custom_lost_password_page() {
        return home_url('/lost-password');
    } // function wpse_133647_custom_lost_password_page
    add_filter('lostpassword_url', 'wpse_133647_custom_lost_password_page');
    

Comments are closed.