WordPress Version: 5.4
/**
* Registers the personal data exporter for media.
*
* @param array[] $exporters An array of personal data exporters, keyed by their ID.
* @return array[] Updated array of personal data exporters.
*/
function wp_register_media_personal_data_exporter($exporters)
{
$exporters['wordpress-media'] = array('exporter_friendly_name' => __('WordPress Media'), 'callback' => 'wp_media_personal_data_exporter');
return $exporters;
}