wp_register_comment_personal_data_eraser( array $erasers ): array

Registers the personal data eraser for comments.


Parameters

$erasers array Required
An array of personal data erasers.

Top ↑

Return

array An array of personal data erasers.


Top ↑

Source

File: wp-includes/comment.php. View all references

function wp_register_comment_personal_data_eraser( $erasers ) {
	$erasers['wordpress-comments'] = array(
		'eraser_friendly_name' => __( 'WordPress Comments' ),
		'callback'             => 'wp_comments_personal_data_eraser',
	);

	return $erasers;
}


Top ↑

Changelog

Changelog
Version Description
4.9.6 Introduced.

Top ↑

User Contributed Notes

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