apply_filters( ‘login_remember_me_help_text’, string $rememberme_help_text )

In this article

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

Description

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

Parameters

$rememberme_help_textstring
The tooltip help text.

Source

$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.' )
);

Changelog

VersionDescription
7.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.