Skip to content

Commit 4add0f4

Browse files
Clarify scope is frontend not admin
Co-authored-by: felixarntz <[email protected]>
1 parent e1f3c18 commit 4add0f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/speculation-rules/settings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ function plsr_register_setting(): void {
163163
'enum' => array_keys( plsr_get_eagerness_labels() ),
164164
),
165165
'authentication' => array(
166-
'description' => __( 'Only unauthenticated pages are typically served from cache. So in order to reduce load on the server, speculative loading is not enabled by default for logged-in users. If your server can handle the additional load, you can opt in to speculative loading for all logged-in users or just administrator users only.', 'speculation-rules' ),
166+
'description' => __( 'Only unauthenticated pages are typically served from cache. So in order to reduce load on the server, speculative loading is not enabled by default for logged-in users. If your server can handle the additional load, you can opt in to speculative loading for all logged-in users or just administrator users only. This only applies to pages on frontend; admin screens remain excluded.', 'speculation-rules' ),
167167
'type' => 'string',
168168
'enum' => array_keys( plsr_get_authentication_labels() ),
169169
),
@@ -211,7 +211,7 @@ static function (): void {
211211
),
212212
'authentication' => array(
213213
'title' => __( 'User Authentication Status', 'speculation-rules' ),
214-
'description' => __( 'Only unauthenticated pages are typically served from cache. So in order to reduce load on the server, speculative loading is not enabled by default for logged-in users. If your server can handle the additional load, you can opt in to speculative loading for all logged-in users or just administrator users only.', 'speculation-rules' ),
214+
'description' => __( 'Only unauthenticated pages are typically served from cache. So in order to reduce load on the server, speculative loading is not enabled by default for logged-in users. If your server can handle the additional load, you can opt in to speculative loading for all logged-in users or just administrator users only. This only applies to pages on frontend; admin screens remain excluded.', 'speculation-rules' ),
215215
),
216216
);
217217
foreach ( $fields as $slug => $args ) {

0 commit comments

Comments
 (0)