Alert: 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.

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

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


Parameters

$title string Required
Page title.
$page WP_Post Required
Page data object.

Top ↑

Return

string Page title.


Top ↑

Source

File: wp-admin/includes/misc.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
4.9.8 Introduced.

Top ↑

User Contributed Notes

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