login_form_bottom WordPress Filter Hook
The login_form_bottom hook is used to add content to the bottom of the login form. This is useful for adding custom links or messages to the login form.
apply_filters( 'login_form_bottom', string $content , array $args ) #
Filters content to display at the bottom of the login form.
Description
The filter evaluates just preceding the closing form tag element.
Parameters
- $content
(string)Content to display. Default empty.
- $args
(array)Array of login form arguments.
Source
Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |