diff --git a/src/wp-login.php b/src/wp-login.php index 915020f717..75c65865d9 100644 --- a/src/wp-login.php +++ b/src/wp-login.php @@ -282,14 +282,27 @@ function login_footer( $input_id = '' ) { // Don't allow interim logins to navigate away from the page. if ( ! $interim_login ) { ?> -
++ %s', + esc_url( home_url( '/' ) ), + /* translators: %s: Site title. */ + sprintf( + _x( '← Go to %s', 'site' ), + get_bloginfo( 'title', 'display' ) + ) + ); + /** + * Filter the "Go to site" link displayed in the login page footer. + * + * @since 5.7.0 + * + * @param string $link HTML link to the home URL of the current site. + */ + echo apply_filters( 'login_site_html_link', $html_link ); + ?> +
', '' );