do_action( 'wp_privacy_personal_data_export_file', int $request_id )
- Since
- 4.9.6
Generate the export file from the collected, grouped personal data.
Parameters
$request_idint- The export request ID.
Fired at · 1
wp-admin/includes/privacy-tools.php:864wp_privacy_process_personal_data_export_page()
Source
* Generate the export file from the collected, grouped personal data. * * @since 4.9.6 * * @param int $request_id The export request ID. */ do_action( 'wp_privacy_personal_data_export_file', $request_id ); // Clear the grouped data now that it is no longer needed. delete_post_meta( $request_id, '_export_data_grouped' ); // If the destination is email, send it now. if ( $send_as_email ) {History
Introduced in 4.9.6. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.7.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.