wp_register_user_personal_data_exporter( array $exporters )

Registers the personal data exporter for users.


Description Description


Parameters Parameters

$exporters

(array) (Required) An array of personal data exporters.


Top ↑

Return Return

(array) An array of personal data exporters.


Top ↑

Source Source

File: wp-includes/user.php

function wp_register_user_personal_data_exporter( $exporters ) {
	$exporters['wordpress-user'] = array(
		'exporter_friendly_name' => __( 'WordPress User' ),
		'callback'               => 'wp_user_personal_data_exporter',
	);

	return $exporters;
}

Top ↑

Changelog Changelog

Changelog
Version Description
4.9.6 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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