wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_privacy_personal_data_cleanup_requests › WordPress Function

Since7.1.0
Deprecatedn/a
wp_privacy_personal_data_cleanup_requests ( No parameters )
Defined at:
Codex:

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).


Source

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();
}