diff --git wp-admin/includes/template.php wp-admin/includes/template-new.php
index b89a899..642b5ad 100644
--- wp-admin/includes/template.php
+++ wp-admin/includes/template-new.php
@@ -1899,6 +1899,15 @@ function _post_states( $post ) {
 	}
 
 	/**
+	 * Adds suffix 'Privacy Policy' for Privacy page.
+	 */
+	if ( '' !== get_option( 'wp_page_for_privacy_policy' ) ) {
+		if( intval( get_option( 'wp_page_for_privacy_policy' ) ) === $post->ID ) {
+			$post_states['wp_page_for_privacy_policy'] = __('Privacy Page');
+		}
+	}
+
+	/**
 	 * Filters the default post display states used in the posts list table.
 	 *
 	 * @since 2.8.0
