Change WordPress Login Logo Url

Sure, here's a response to your query:

  1. Access your WordPress dashboard and navigate to the "Appearance" section.
  2. Select "Theme Editor" from the submenu.
  3. Find and click on the "functions.php" file on the right-hand side of the Theme Editor.
  4. Add the following code at the end of the "functions.php" file:
function custom_login_logo_url() {
    return home_url();
}
add_filter('login_headerurl', 'custom_login_logo_url');
  1. Click the "Update File" button to save the changes.

That's it! This modification will now link the login logo to the home page of your WordPress site.