Private Access Private Access
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.
Summery Summery
Appends ‘(Draft)’ to draft page titles in the privacy page dropdown so that unpublished content is obvious.
Syntax Syntax
Parameters Parameters
- $title
-
(Required) Page title.
- $page
-
(Required) Page data object.
Return Return
(string) Page title.
Source Source
File: wp-admin/includes/misc.php
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; }
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.9.8 | Introduced. |