diff --git a/wp-admin/includes/misc.php b/wp-admin/includes/misc.php index 0f60424465..739db362a3 100644 --- a/wp-admin/includes/misc.php +++ b/wp-admin/includes/misc.php @@ -1506,9 +1506,17 @@ final class WP_Privacy_Policy_Content {

' . __( 'Check out our guide' ) . '' ); + __( 'Need help putting together your new Privacy Policy page? Check out our guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.' ), + admin_url( 'tools.php?wp-privacy-policy-guide=1' ), + 'target="_blank"', + sprintf( + ' %s', + /* translators: accessibility text */ + __( '(opens in a new tab)' ) + ) + ); ?>

diff --git a/wp-admin/privacy.php b/wp-admin/privacy.php index d846030224..41d2d4c1d1 100644 --- a/wp-admin/privacy.php +++ b/wp-admin/privacy.php @@ -141,9 +141,12 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );

' . __( 'Check out our guide' ) . '' + __( 'Need help putting together your new Privacy Policy page? Check out our guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.' ), + admin_url( 'tools.php?wp-privacy-policy-guide' ), + '', + '' ); ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index d5db193b33..9761036e4c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9.6-beta1-43204'; +$wp_version = '4.9.6-beta1-43207'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.