ActionScheduler_Action::set_priority
Sets the priority of the action.
Метод класса: ActionScheduler_Action{}
Хуков нет.
Возвращает
void. Ничего (null).
Использование
$ActionScheduler_Action = new ActionScheduler_Action(); $ActionScheduler_Action->set_priority( $priority );
- $priority(int) (обязательный)
- Priority level (lower is higher priority). Should be in the range 0-255.
Код ActionScheduler_Action::set_priority() ActionScheduler Action::set priority WC 11.1.0
public function set_priority( $priority ) {
if ( $priority < 0 ) {
$priority = 0;
} elseif ( $priority > 255 ) {
$priority = 255;
}
$this->priority = (int) $priority;
}