login_site_html_link
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 | Введена. |
Где вызывается хук
wp-login.php 343
echo apply_filters( 'login_site_html_link', $html_link );