login_site_html_link хук-фильтрWP 5.7.0

Filters the "Go to site" link displayed in the login page footer.

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

add_filter( 'login_site_html_link', 'wp_kama_login_site_html_link_filter' );

/**
 * Function for `login_site_html_link` filter-hook.
 * 
 * @param string $link HTML link to the home URL of the current site.
 *
 * @return string
 */
function wp_kama_login_site_html_link_filter( $link ){

	// filter...
	return $link;
}
$link(строка)
HTML link to the home URL of the current site.

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

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

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

login_footer()
login_site_html_link
wp-login.php 339
echo apply_filters( 'login_site_html_link', $html_link );

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

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