From 60d1431222cd4e78467c13240fbd34fd06aa86f6 Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Mon, 20 May 2024 11:58:09 -0600 Subject: [PATCH] update language of description --- inc/pantheon-page-cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/pantheon-page-cache.php b/inc/pantheon-page-cache.php index 3364296..24876ed 100644 --- a/inc/pantheon-page-cache.php +++ b/inc/pantheon-page-cache.php @@ -238,7 +238,7 @@ public function default_ttl_field() { $disabled = ( has_filter( 'pantheon_cache_default_max_age' ) ) ? ' disabled' : ''; echo wp_kses_post( apply_filters( 'pantheon_cache_default_ttl_field_before_html', '
' ) ); echo '

' . esc_html__( 'Page Cache Max Age', 'pantheon-cache' ) . '

'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - echo '

' . esc_html__( 'Maximum time a cached page will be served. A higher max-age typically improves site performance.', 'pantheon-cache' ) . '

'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + echo '

' . wp_kses_post( sprintf( __( 'When your site content is updated, Pantheon Advanced Page Cache clears page cache automatically. This setting determines how long a page will be stored in the Global Content Delivery Network (GCDN) cache before GCDN retrieves the content from WordPress again.', 'pantheon-cache' ), '#' ) ). '

'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo ' ' . esc_html__( 'seconds', 'pantheon-cache' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo wp_kses_post( apply_filters( 'pantheon_cache_default_ttl_field_after_html', '
' ) );