Yoast\WP\Lib
ORM::build_order_by
Builds ORDER BY.
Метод класса: ORM{}
Хуков нет.
Возвращает
Строку.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->build_order_by();
Код ORM::build_order_by() ORM::build order by Yoast 27.8
protected function build_order_by() {
if ( \count( $this->order_by ) === 0 ) {
return '';
}
return 'ORDER BY ' . \implode( ', ', $this->order_by );
}