Yoast\WP\Lib
ORM::offset()
Adds an OFFSET to the query.
Метод класса: ORM{}
Хуков нет.
Возвращает
ORM
.
Использование
$ORM = new ORM(); $ORM->offset( $offset );
- $offset(int) (обязательный)
- The offset.
Код ORM::offset() ORM::offset Yoast 24.0
public function offset( $offset ) { $this->offset = $offset; return $this; }