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_statuses()
Return statuses for privacy requests.
Description Description
Return Return
(array)
Source Source
File: wp-includes/post.php
function _wp_privacy_statuses() { return array( 'request-pending' => __( 'Pending' ), // Pending confirmation from user. 'request-confirmed' => __( 'Confirmed' ), // User has confirmed the action. 'request-failed' => __( 'Failed' ), // User failed to confirm the action. 'request-completed' => __( 'Completed' ), // Admin has handled the request. ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.9.6 | Introduced. |