wc_update_390_change_geolocation_database_update_cron() WC 1.0
So that we can best meet MaxMind's TOS, the geolocation database update cron should run once per 15 days.
No Hooks.
Return
Null. Nothing.
Usage
wc_update_390_change_geolocation_database_update_cron();
Code of wc_update_390_change_geolocation_database_update_cron() wc update 390 change geolocation database update cron WC 5.0.0
function wc_update_390_change_geolocation_database_update_cron() {
wp_clear_scheduled_hook( 'woocommerce_geoip_updater' );
wp_schedule_event( time() + ( DAY_IN_SECONDS * 15 ), 'fifteendays', 'woocommerce_geoip_updater' );
}