apply_filters_deprecated( ‘login_headertitle’, string $login_header_title )

This hook has been deprecated. Use {@see ‘login_headertext’} instead.

Filters the title attribute of the header logo above login form.

Parameters

$login_header_titlestring
Login header logo title attribute.

Source

$login_header_title = apply_filters_deprecated(
	'login_headertitle',
	array( $login_header_title ),
	'5.2.0',
	'login_headertext',
	__( 'Usage of the title attribute on the login logo is not recommended for accessibility reasons. Use the link text instead.' )
);

Changelog

VersionDescription
5.2.0Use 'login_headertext' instead.
2.1.0Introduced.

User Contributed Notes

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