wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_register_comment_personal_data_exporter › WordPress Function

Seit4.9.6
Veraltetn/v
wp_register_comment_personal_data_exporter ( $exporters )
Parameter:
  • (array[]) $exporters An array of personal data exporters.
    Erforderlich: Ja
Gibt zurück:
  • (array[]) An array of personal data exporters.
Definiert in:
Codex:

Registers the personal data exporter for comments.



Quellcode

function wp_register_comment_personal_data_exporter( $exporters ) {
	$exporters['wordpress-comments'] = array(
		'exporter_friendly_name' => __( 'WordPress Comments' ),
		'callback'               => 'wp_comments_personal_data_exporter',
	);

	return $exporters;
}