wp_privacy_personal_data_cleanup_requests()WP 7.1.0

Fires the personal data cleanup requests handler during cron.

Loads the admin privacy tools file if needed (e.g. during cron, where wp-admin/includes/privacy-tools.php is not loaded automatically).

No Hooks.

Returns

null. Nothing (null).

Usage

wp_privacy_personal_data_cleanup_requests(): void;

Changelog

Since 7.1.0 Introduced.

wp_privacy_personal_data_cleanup_requests() code WP 7.1

function wp_privacy_personal_data_cleanup_requests(): void {
	if ( ! function_exists( '_wp_personal_data_cleanup_requests' ) ) {
		require_once ABSPATH . 'wp-admin/includes/privacy-tools.php';
	}
	_wp_personal_data_cleanup_requests();
}