Yoast\WP\Lib
ORM::group_by_expr()
Adds an unquoted expression to the list of columns to GROUP BY.
Метод класса: ORM{}
Хуков нет.
Возвращает
ORM
.
Использование
$ORM = new ORM(); $ORM->group_by_expr( $expr );
- $expr(строка) (обязательный)
- The expression.
Код ORM::group_by_expr() ORM::group by expr Yoast 24.0
public function group_by_expr( $expr ) { $this->group_by[] = $expr; return $this; }