diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 76ebe7156c..ca1121da82 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1775,6 +1775,10 @@ function _post_states($post) { } } + if ( intval( get_option( 'wp_page_for_privacy_policy' ) ) === $post->ID ) { + $post_states['page_for_privacy_policy'] = __( 'Privacy Policy Page' ); + } + /** * Filters the default post display states used in the posts list table. * diff --git a/wp-includes/version.php b/wp-includes/version.php index c77b650090..d20aca8d24 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9.8-alpha-43494'; +$wp_version = '4.9.8-alpha-43496'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.