Filters the link text of the header logo above the login form.
$login_header_textstringwp-login.php:167login_header() * Filters the link text of the header logo above the login form. * * @since 5.2.0 * * @param string $login_header_text The login header logo link text. */ $login_header_text = apply_filters( 'login_headertext', $login_header_text ); $classes = array( 'login-action-' . $action, 'wp-core-ui', 'admin-color-modern' ); if ( is_rtl() ) { $classes[] = 'rtl'; }Introduced in 5.2.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.