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



wp_privacy_personal_data_cleanup_requests › WordPress Function

Seit7.1.0
Veraltetn/v
wp_privacy_personal_data_cleanup_requests ( Keine Parameter )
Definiert in:
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).


Quellcode

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