wp_privacy_personal_data_export_file action-hook . WP 4.9.6
Generate the export file from the collected, grouped personal data.
Usage
add_action( 'wp_privacy_personal_data_export_file', 'action_function_name_9653' ); function action_function_name_9653( $request_id ){ // action... }
- $request_id(int)
- The export request ID.
Changelog
Since 4.9.6 | Introduced. |
Where the hook is called
wp_privacy_personal_data_export_file
wp-admin/includes/privacy-tools.php 832
do_action( 'wp_privacy_personal_data_export_file', $request_id );
Where in WP core the hook is used WordPress
wp-admin/includes/admin-filters.php 136
add_action( 'wp_privacy_personal_data_export_file', 'wp_privacy_generate_personal_data_export_file', 10 );