diff --git a/src/wp-includes/theme-compat/footer.php b/src/wp-includes/theme-compat/footer.php
index 2a719e18f0..6d1ceccac6 100644
a
|
b
|
_deprecated_file( |
23 | 23 | <?php |
24 | 24 | printf( |
25 | 25 | /* translators: 1: Site name, 2: WordPress */ |
26 | | __( '%1$s is proudly powered by %2$s' ), |
| 26 | __( '%1$s is proudly powered by <a href="%2$s">%3$s</a>' ), |
27 | 27 | get_bloginfo( 'name' ), |
28 | | '<a href="https://wordpress.org/">WordPress</a>' |
| 28 | esc_url( __( 'https://wordpress.org/' ) ), |
| 29 | esc_html__( 'WordPress' ) |
29 | 30 | ); |
30 | 31 | ?> |
31 | 32 | </p> |