wp_privacy_personal_data_erased action-hook . WP 4.9.6
Fires immediately after a personal data erasure request has been marked completed.
Usage
add_action( 'wp_privacy_personal_data_erased', 'action_function_name_728' ); function action_function_name_728( $request_id ){ // action... }
- $request_id(int)
- The privacy request post ID associated with this request.
Changelog
Since 4.9.6 | Introduced. |
Where the hook is called
wp_privacy_personal_data_erased
wp-admin/includes/privacy-tools.php 933
do_action( 'wp_privacy_personal_data_erased', $request_id );
Where in WP core the hook is used WordPress
wp-admin/includes/admin-filters.php 137
add_action( 'wp_privacy_personal_data_erased', '_wp_privacy_send_erasure_fulfillment_notification', 10 );