filtrod 4.9.6
wp_privacy_personal_data_exporters
Opis — z kodu źródłowego
Filters the array of exporter callbacks.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$args | array | { An array of callable exporters of personal data. Default empty array. @type array ...$0 { Array of personal data exporters. @type callable $callback Callable exporter function that accepts an email address and a page number and returns an array of name => value pairs of personal data. @type string $exporter_friendly_name Translated user facing friendly name for the exporter. } } |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'wp_privacy_personal_data_exporters', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'wp_privacy_personal_data_exporters', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii