- Timestamp:
- 09/17/2023 03:21:07 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-privacy-policy-content.php
r56571 r56599 139 139 } 140 140 141 ?> 142 <div class="policy-text-updated notice notice-warning is-dismissible"> 143 <p> 144 <?php 145 printf( 146 /* translators: %s: Privacy Policy Guide URL. */ 147 __( 'The suggested privacy policy text has changed. Please <a href="%s">review the guide</a> and update your privacy policy.' ), 148 esc_url( admin_url( 'privacy-policy-guide.php?tab=policyguide' ) ) 149 ); 150 ?> 151 </p> 152 </div> 153 <?php 141 $privacy_message = sprintf( 142 /* translators: %s: Privacy Policy Guide URL. */ 143 __( 'The suggested privacy policy text has changed. Please <a href="%s">review the guide</a> and update your privacy policy.' ), 144 esc_url( admin_url( 'privacy-policy-guide.php?tab=policyguide' ) ) 145 ); 146 147 wp_admin_notice( 148 $privacy_message, 149 array( 150 'type' => 'warning', 151 'additional_classes' => array( 'policy-text-updated' ), 152 'dismissible' => true, 153 ) 154 ); 154 155 } 155 156
Note: See TracChangeset
for help on using the changeset viewer.