Title: login_form_bottom
Published: April 25, 2014
Last modified: May 20, 2026

---

# apply_filters( ‘login_form_bottom’, string $content, array $args )

## In this article

 * [Description](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#description)
 * [Parameters](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#wp--skip-link--target)

Filters content to display at the bottom of the login form.

## 󠀁[Description](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#description)󠁿

The filter evaluates just preceding the closing form tag element.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#parameters)󠁿

 `$content`string

Content to display. Default empty.

`$args`array

Array of login form arguments.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#source)󠁿

    ```php
    $login_form_bottom = apply_filters( 'login_form_bottom', '', $args );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-includes/general-template.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-includes/general-template.php#L594)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-includes/general-template.php#L594-L594)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#related)󠁿

| Used by | Description | 
| [wp_login_form()](https://developer.wordpress.org/reference/functions/wp_login_form/)`wp-includes/general-template.php` |

Provides a simple login form for use anywhere within WordPress.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/login_form_bottom/?output_format=md#changelog)󠁿

| Version | Description | 
| [3.0.0](https://developer.wordpress.org/reference/since/3.0.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Flogin_form_bottom%2F)
before being able to contribute a note or feedback.