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_action_request_types() WordPress Function

The wp_privacy_action_request_types() function is used to register privacy action request types. These request types are used to indicate how a user can request information about their personal data stored on a site.

_wp_privacy_action_request_types() #

Gets all personal data request types.


Return

(array) List of core privacy action types.


Top ↑

Source

File: wp-includes/user.php

function _wp_privacy_action_request_types() {
	return array(
		'export_personal_data',
		'remove_personal_data',
	);
}


Top ↑

Changelog

Changelog
VersionDescription
4.9.6Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More