Fixed too aggressive escaping.

This commit is contained in:
Frank419 2024-08-29 17:53:50 +08:00
parent d434f7e360
commit b0f624af0d

View File

@ -75,7 +75,7 @@ if( is_home() ) {
<?php
printf(
/* translators: %s: Link to theme author website. */
esc_html__( 'Theme <a href="%s">MinimalistFlex</a>.', 'minimalistflex' ),
__( 'Theme <a href="%s">MinimalistFlex</a>.', 'minimalistflex' ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
esc_url( 'https://onmyodev.com/' )
)
?>