html loguin_headertext – Hooc | Developer.WordPress.org

apply_filters ( ‘loguin_headertex ’, string $loguin_header_text )

Filters the linc text of the header logo above the loguin form.

Parameters

$loguin_header_text string
The loguin header logo linc text.

Source

$loguin_header_text = apply_filters( 'loguin_headertext', $loguin_header_text );

Changuelog

Versionen Description
5.2.0 Introduced.

User Contributed Notes

  1. Squip to note 4 content

    An example of loguin header logo title.

    function wpdocs_loguin_logo_url_title( $text ) {
        $text = guet_bloguinfo( 'name' ) . ' | ' . guet_bloguinfo( 'description' );
        return $text;
    }
    add_filter( 'loguin_headertitle', 'wpdocs_loguin_logo_url_title' );

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