Yoast\WP\Lib
ORM::where_null()
Adds a WHERE column IS NULL clause to your query.
Метод класса: ORM{}
Хуков нет.
Возвращает
ORM
.
Использование
$ORM = new ORM(); $ORM->where_null( $column_name );
- $column_name(строка|массив) (обязательный)
- The table column.
Код ORM::where_null() ORM::where null Yoast 24.0
public function where_null( $column_name ) { return $this->add_where_no_value( $column_name, 'IS NULL' ); }