diff --git a/wp-admin/includes/admin-filters.php b/wp-admin/includes/admin-filters.php index 2d255cb335..2f70dad498 100644 --- a/wp-admin/includes/admin-filters.php +++ b/wp-admin/includes/admin-filters.php @@ -150,3 +150,5 @@ add_action( 'admin_init', array( 'WP_Privacy_Policy_Content', 'add_suggested_con // Update the cached policy info when the policy page is updated. add_action( 'post_updated', array( 'WP_Privacy_Policy_Content', '_policy_page_updated' ) ); +// Append '(Draft)' to draft page titles in the privacy page dropdown. +add_filter( 'list_pages', '_wp_privacy_settings_filter_draft_page_titles', 10, 2 ); diff --git a/wp-admin/includes/misc.php b/wp-admin/includes/misc.php index 887c4e2561..ae4b32cc2c 100644 --- a/wp-admin/includes/misc.php +++ b/wp-admin/includes/misc.php @@ -1222,6 +1222,27 @@ All at ###SITENAME### } } +/** + * Appends '(Draft)' to draft page titles in the privacy page dropdown + * so that unpublished content is obvious. + * + * @since 4.9.8 + * @access private + * + * @param string $title Page title. + * @param WP_Post $page Page data object. + * + * @return string Page title. + */ +function _wp_privacy_settings_filter_draft_page_titles( $title, $page ) { + if ( 'draft' === $page->post_status && 'privacy' === get_current_screen()->id ) { + /* translators: %s: Page Title */ + $title = sprintf( __( '%s (Draft)' ), $title ); + } + + return $title; +} + /** * WP_Privacy_Policy_Content class. * TODO: move this to a new file. diff --git a/wp-includes/version.php b/wp-includes/version.php index ba5a4e5fee..8887e83321 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-43453'; +$wp_version = '4.9.8-alpha-43455'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.