WP_Background_Process::dispatch()publicWC 1.0

Dispatch

Метод класса: WP_Background_Process{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Background_Process = new WP_Background_Process();
$WP_Background_Process->dispatch();

Код WP_Background_Process::dispatch() WC 8.7.0

public function dispatch() {
	// Schedule the cron healthcheck.
	$this->schedule_event();

	// Perform remote post.
	return parent::dispatch();
}