Yoast\WP\Lib
ORM::select_expr()
Adds an unquoted expression to the list of columns returned by the SELECT query.
Метод класса: ORM{}
Хуков нет.
Возвращает
ORM
.
Использование
$ORM = new ORM(); $ORM->select_expr( $expr, $alias );
- $expr(строка) (обязательный)
- The expression.
- $alias(строка|null)
- The alias to return the column as.
По умолчанию: null
Код ORM::select_expr() ORM::select expr Yoast 24.0
public function select_expr( $expr, $alias = null ) { return $this->add_result_column( $expr, $alias ); }