WC_Action_Queue::schedule_single()
Schedule an action to run once at some time in the future
Метод класса: WC_Action_Queue{}
Хуков нет.
Возвращает
Строку
. The action ID.
Использование
$WC_Action_Queue = new WC_Action_Queue(); $WC_Action_Queue->schedule_single( $timestamp, $hook, $args, $group );
- $timestamp(int) (обязательный)
- When the job will run.
- $hook(строка) (обязательный)
- The hook to trigger.
- $args(массив)
- Arguments to pass when the hook triggers.
По умолчанию: array() - $group(строка)
- The group to assign this job to.
По умолчанию: ''
Код WC_Action_Queue::schedule_single() WC Action Queue::schedule single WC 9.3.3
public function schedule_single( $timestamp, $hook, $args = array(), $group = '' ) { return as_schedule_single_action( $timestamp, $hook, $args, $group ); }