wp-includes/functions.php:8568Schedules a WP-Cron job to clean up personal data requests.
function wp_schedule_personal_data_cleanup_requests(): void { if ( wp_installing() ) { return; } if ( ! wp_next_scheduled( 'wp_privacy_personal_data_cleanup_requests' ) ) { wp_schedule_event( time(), 'daily', 'wp_privacy_personal_data_cleanup_requests' ); }}Introduced in 7.1.0.
Signature, return type and hooks compared across 1 parsed release.
src/wp-includes/functions.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.