apply_filters( ‘wp_privacy_personal_data_exporters’, array $args )

In this article

Filters the array of exporter callbacks.

Parameters

$argsarray
An array of callable exporters of personal data. Default empty array.
  • ...$0 array
    Array of personal data exporters.
    • callback callable
      Callable exporter function that accepts an email address and a page number and returns an array of name => value pairs of personal data.
    • exporter_friendly_name string
      Translated user facing friendly name for the exporter.

Source

$exporters = apply_filters( 'wp_privacy_personal_data_exporters', array() );

Changelog

VersionDescription
4.9.6Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.