login_headertext хук-фильтрWP 5.2.0

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

Использование

add_filter( 'login_headertext', 'wp_kama_login_headertext_filter' );

/**
 * Function for `login_headertext` filter-hook.
 * 
 * @param string $login_header_text The login header logo link text.
 *
 * @return string
 */
function wp_kama_login_headertext_filter( $login_header_text ){

	// filter...
	return $login_header_text;
}
$login_header_text(строка)
The login header logo link text.

Список изменений

С версии 5.2.0 Введена.

Где вызывается хук

login_header()
login_headertext
wp-login.php 163
$login_header_text = apply_filters( 'login_headertext', $login_header_text );

Где используется хук в WordPress

Использование не найдено.