Index: wp-includes/shortcodes.php
===================================================================
--- wp-includes/shortcodes.php	(revision 42985)
+++ wp-includes/shortcodes.php	(working copy)
@@ -647,3 +647,33 @@
 
 	return $m[1] . $m[6];
 }
+
+/**
+ * Creates the [privacy-policy-page] shortcode
+ *
+ * @since 5.0.0
+ *
+ * @param array $atts Shortcode attributes Link Text, Link Divider.
+ *
+ * @uses get_option()
+ * @uses get_post_status()
+ * @uses get_page_link()
+ *
+ * @return string Link to Privacy Policy page
+ */
+
+function wp_privacy_policy_page_shortcode( $atts ) {
+
+	$atr = shortcode_atts( array(
+		'text'    => __( 'Privacy Policy' ),
+		'divider' => '',
+	), $atts );
+
+	$privacy_policy_page_id = (int) get_option( 'wp_page_for_privacy_policy' );
+
+	if ( ! empty( $privacy_policy_page_id ) && 'publish' === get_post_status( $privacy_policy_page_id ) ) {
+		return $atr['divider'] . '<a href="' . get_page_link( $privacy_policy_page_id ) . '">' . $atr['text'] . '</a>';
+	}
+	return;
+}
+add_shortcode( 'privacy-policy-page', 'wp_privacy_policy_page_shortcode' );
