apply_filters( 'login_headerurl', string $login_header_url )

Filters link URL of the header logo above login form.

Parameters

$login_header_url

(string) Login header logo URL.

More Information

The “login_headerurl” filter is used to filter the URL of the logo on the WordPress login page. By default, this logo links to the WordPress site.

A plugin can register as a content filter with the code:


add_filter("login_headerurl","plugin_function_name");

Where “plugin_function_name” is the function WordPress should call when the content is being retrieved. Note that the filter function the plugin defines must return the URL after it is finished processing, or the logo may not have any links, and other plugins also filtering the same may generate errors.

You can also use this in the theme function.php file within your WordPress page if you don’t wish to use a plugin or want to distribute your theme.

Source

File: wp-login.php

View on Trac

Changelog

Version Description
2.1.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/login_headerurl