wp_register_comment_personal_data_exporter( array $exporters )
Registers the personal data exporter for comments.
Description Description
Parameters Parameters
- $exporters
-
(array) (Required) An array of personal data exporters.
Return Return
(array) $exporters An array of personal data exporters.
Source Source
File: wp-includes/comment.php
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; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.9.6 | Introduced. |