apply_filters( 'wp_privacy_personal_data_exporters', array $args )
Filters the array of exporter callbacks.
Parameters
-
$args
array -
An array of callable exporters of personal data. Default empty array.
...$0
arrayArray of personal data exporters.callback
callableCallable exporter function that accepts an email address and a page and returns an array of name => value pairs of personal data.exporter_friendly_name
stringTranslated user facing friendly name for the exporter.
Source
File:
wp-admin/includes/ajax-actions.php
. View all references$exporters = apply_filters( 'wp_privacy_personal_data_exporters', array() );
Changelog
Changelog Version Description 4.9.6 Introduced.
User Contributed Notes