Filters the help text shown in the "Remember Me" tooltip on the login form.
$rememberme_help_textstringwp-login.php:1549file scope * Returning an empty string removes the tooltip toggle from the form. * * @since 7.1.0 * * @param string $rememberme_help_text The tooltip help text. */ $rememberme_help_text = apply_filters( 'login_remember_me_help_text', __( 'Selecting "Remember Me" increases the length of time until you’re asked to log in again on this device. To keep your account secure, use this option only on your personal devices.' ) ); ?> <p class="forgetmenot"> <input name="rememberme" type="checkbox" id="rememberme" value="forever" <?php checked( $rememberme ); ?> />Introduced in 7.1.0.
Signature, return type and hooks compared across 1 parsed release.