_wp_privacy_settings_filter_draft_page_titles( string $title, WP_Post $page ): string

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Appends ‘(Draft)’ to draft page titles in the privacy page dropdown so that unpublished content is obvious.

Parameters

$titlestringrequired
Page title.
$pageWP_Postrequired
Page data object.

Return

string Page title.

Source

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;
}

Changelog

VersionDescription
4.9.8Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.