Change the Login URL

Redirect the login page to a custom URL.

<?php
function custom_login_url() {
    return home_url(); // Change to your custom URL
}
add_filter('login_headerurl', 'custom_login_url');

Post Comment