login_headerurl WordPress Filter Hook
The login_headerurl hook allows you to change the URL that is displayed in the header when you are logged in. This can be useful if you want to redirect users to a different page after they login.
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
Changelog
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |