Title: login_remember_me_help_text
Published: August 20, 2026

---

# apply_filters( ‘login_remember_me_help_text’, string $rememberme_help_text )

## In this article

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

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

Filters the help text shown in the “Remember Me” tooltip on the login form.

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

Returning an empty string removes the tooltip toggle from the form.

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

 `$rememberme_help_text`string

The tooltip help text.

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

    ```php
    $rememberme_help_text = apply_filters(
    	'login_remember_me_help_text',
    	__( 'Selecting "Remember Me" increases the length of time until you&#8217;re asked to log in again on this device. To keep your account secure, use this option only on your personal devices.' )
    );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-login.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.1/src/wp-login.php#L1549)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.1/src/wp-login.php#L1549-L1552)

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

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

## User Contributed Notes

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