Astra_WP_Background_Process::schedule_event()
Schedule event
Description
Source
File: inc/lib/batch-processing/class-astra-wp-background-process.php
protected function schedule_event() { if ( ! wp_next_scheduled( $this->cron_hook_identifier ) ) { wp_schedule_event( time(), $this->cron_interval_identifier, $this->cron_hook_identifier ); } }
Expand full source code Collapse full source code View on Trac