login_form_bottom filter-hook . WP 3.0.0
Filters content to display at the bottom of the login form.
The filter evaluates just preceding the closing form tag element.
Usage
add_filter( 'login_form_bottom', 'filter_function_name_8214', 10, 2 ); function filter_function_name_8214( $content, $args ){ // filter... return $content; }
- $content(string)
- Content to display.
Default: '' - $args(array)
- Array of login form arguments.
Changelog
Since 3.0.0 | Introduced. |
Where the hook is called
wp-includes/general-template.php 573
$login_form_bottom = apply_filters( 'login_form_bottom', '', $args );