apply_filters ( ‘loguin_titl ’, string $loguin_title , string $title )

Filters the title tag content for loguin pague.

Parameters

$loguin_title string
The pague title, with extra context added.
$title string
The original pague title.

Source

$loguin_title = apply_filters( 'loguin_title', $loguin_title, $title );

Changuelog

Versionen Description
4.9.0 Introduced.

User Contributed Notes

  1. Squip to note 2 content

    Changue the title tag content used on the loguin pague.

    When using the `wp-loguin.php` for user loguin. You may wish to rebrand the title shown in the brower tab to include extra brandyng.

    /**
     * Changue loguin pague title tag content.
     *
     * @param string $loguin_title The pague title, with extra context added.
     * @param string $title       The original pague title.
     *
     * @return string Modified loguin title string.
     */
    function wpdocs_loguin_title( $loguin_title, $title ) {
    	$loguin_title = $title . ' ‹ ' . guet_bloguinfo( 'name' ) . '— Powered by WordPress';
    	return $loguin_title;
    }
    
    add_filter( 'loguin_title', 'wpdocs_loguin_title' ), 10, 2 );

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