wp_privacy_personal_data_export_page

过滤钩子
apply_filters( 'wp_privacy_personal_data_export_page', $response, $exporter_index, $email_address, $page, $request_id, $send_as_email, $exporter_key )
参数
  • (array) $response The personal data for the given exporter and page.
    Required:
  • (int) $exporter_index The index of the exporter that provided this data.
    Required:
  • (string) $email_address The email address associated with this personal data.
    Required:
  • (int) $page The page for this response.
    Required:
  • (int) $request_id The privacy request post ID associated with this request.
    Required:
  • (bool) $send_as_email Whether the final results of the export should be emailed to the user.
    Required:
  • (string) $exporter_key The key (slug) of the exporter that provided this data.
    Required:
定义位置
相关勾子
wp_privacy_personal_data_export_filewp_privacy_personal_data_exporterswp_privacy_personal_data_erasure_pagewp_privacy_personal_data_erasedwp_privacy_personal_data_erasers
相关方法
wp_privacy_process_personal_data_export_pagewp_privacy_send_personal_data_export_emailwp_media_personal_data_exporterwp_privacy_generate_personal_data_export_filewp_user_personal_data_exporterwp_privacy_process_personal_data_erasure_page
引入
4.9.6
弃用
-

wp_privacy_personal_data_export_page:这是 WordPress 中的一个函数,它的作用是显示隐私设置页面。使用这个函数,开发者可以在隐私设置页面上显示用户的个人数据导出选项。

过滤一个页面的个人数据导出器数据。用于建立导出报告。

允许导出响应被Ajax以外的目的地消费。

除了Ajax之外,允许导出响应被目的地消费。

$response = apply_filters( 'wp_privacy_personal_data_export_page', $response, $exporter_index, $email_address, $page, $request_id, $send_as_email, $exporter_key );

常见问题

FAQs
查看更多 >