apply_filters( ‘login_headertext’, string $login_header_text )

Filters the link text of the header logo above the login form.

Parameters

$login_header_textstring
The login header logo link text.

Source

$login_header_text = apply_filters( 'login_headertext', $login_header_text );

Changelog

VersionDescription
5.2.0Introduced.

User Contributed Notes

  1. Skip to note 4 content

    An example of login header logo title.

    function wpdocs_login_logo_url_title( $text ) {
        $text = get_bloginfo( 'name' ) . ' | ' . get_bloginfo( 'description' );
        return $text;
    }
    add_filter( 'login_headertitle', 'wpdocs_login_logo_url_title' );

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