_wp_privacy_action_request_types()
Get all personal data request types.
This is an internal function for using it by WP core itself. It's not recommended to use this function in your code.
No Hooks.
Return
Array
. List of core privacy action types.
Usage
_wp_privacy_action_request_types();
Changelog
Since 4.9.6 | Introduced. |
Code of _wp_privacy_action_request_types() wp privacy action request types WP 5.9.3
function _wp_privacy_action_request_types() { return array( 'export_personal_data', 'remove_personal_data', ); }