wp_privacy_personal_data_export_page

wp_privacy_personal_data_export_page

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_privacy_personal_data_export_page') is found 1 times:

  • /wp-admin/includes/ajax-actions.php line 5101
    5097
    5098
    5099
    5100
    5101
    5102
    5103
    5104
    5105
    5106
    5107
    * @param int    $request_id      The privacy request post ID associated with this request.
     * @param bool   $send_as_email   Whether the final results of the export should be emailed to the user.
     * @param string $exporter_key    The key (slug) of the exporter that provided this data.
     */
    $response = apply_filters( 'wp_privacy_personal_data_export_page', $response, $exporter_index, $email_address, $page, $request_id, $send_as_email, $exporter_key );
     
    if ( is_wp_error( $response ) ) {
        wp_send_json_error( $response );
    }
     
    wp_send_json_success( $response );