Changeset 43206 for trunk/src/wp-admin/includes/misc.php
- Timestamp:
- 05/09/2018 11:11:29 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r43203 r43206 1556 1556 <p> 1557 1557 <?php 1558 /* translators: 1: Privacy Policy guide URL, 2: additional link attributes, 3: accessibility text */ 1558 1559 printf( 1559 __( 'Need help putting together your new Privacy Policy page? %s for recommendations on what content to include, along with policies suggested by your plugins and theme.' ), 1560 '<a href="' . admin_url( 'tools.php?wp-privacy-policy-guide=1' ) . '" target="_blank">' . __( 'Check out our guide' ) . '</a>' ); 1560 __( 'Need help putting together your new Privacy Policy page? <a href="%1$s" %2$s>Check out our guide%3$s</a> for recommendations on what content to include, along with policies suggested by your plugins and theme.' ), 1561 admin_url( 'tools.php?wp-privacy-policy-guide=1' ), 1562 'target="_blank"', 1563 sprintf( 1564 '<span class="screen-reader-text"> %s</span>', 1565 /* translators: accessibility text */ 1566 __( '(opens in a new tab)' ) 1567 ) 1568 ); 1561 1569 ?> 1562 1570 </p>
Note: See TracChangeset
for help on using the changeset viewer.