diff --git a/wp-includes/version.php b/wp-includes/version.php index 88238d6f25..b29cd6bdbd 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-50116'; +$wp_version = '5.7-alpha-50117'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-login.php b/wp-login.php index 915020f717..75c65865d9 100644 --- a/wp-login.php +++ b/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 ); + ?> +

', '' );