WP_Background_Process::dispatch()publicWC 1.0

Dispatch

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

Хуков нет.

Возвращает

Массив|WP_Error.

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

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

Код WP_Background_Process::dispatch() WC 9.5.1

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

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