Filters the array of exporter callbacks.
$argsarray...$0array
$callbackcallable
$exporter_friendly_namestring
wp-admin/includes/ajax-actions.php:5027wp_ajax_wp_privacy_export_personal_data()wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:48WP_Privacy_Data_Export_Requests_List_Table::column_email()wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:120WP_Privacy_Data_Export_Requests_List_Table::column_next_steps()wp-admin/includes/privacy-tools.php:822wp_privacy_process_personal_data_export_page() * array of name => value pairs of personal data. * @type string $exporter_friendly_name Translated user facing friendly name for the * exporter. * } * } */ $exporters = apply_filters( 'wp_privacy_personal_data_exporters', array() ); if ( ! is_array( $exporters ) ) { wp_send_json_error( __( 'An exporter has improperly used the registration filter.' ) ); } // Do we have any registered exporters?Introduced in 4.9.6. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.