login_form_middle filter-hook . WP 3.0.0
Filters content to display in the middle of the login form.
The filter evaluates just following the location where the 'login-password'
field is displayed.
Usage
add_filter( 'login_form_middle', 'filter_function_name_547', 10, 2 ); function filter_function_name_547( $content, $args ){ // filter... return $content; }
- $content(string)
- Content to display.
Default: '' - $args(array)
- Array of login form arguments.
Where the hook is called
wp-includes/general-template.php 444
$login_form_middle = apply_filters( 'login_form_middle', '', $args );