WC_Background_Updater::schedule_event()
Schedule fallback event.
{} It's a method of the class: WC_Background_Updater{}
No Hooks.
Return
null
. Nothing.
Usage
// protected - for code of main (parent) or child class $result = $this->schedule_event();
Code of WC_Background_Updater::schedule_event() WC Background Updater::schedule event WC 6.7.0
protected function schedule_event() { if ( ! wp_next_scheduled( $this->cron_hook_identifier ) ) { wp_schedule_event( time() + 10, $this->cron_interval_identifier, $this->cron_hook_identifier ); } }