Yoast\WP\Lib
ORM::get_id_column_name()
Returns the name of the column in the database table which contains the primary key ID of the row.
Метод класса: ORM{}
Хуков нет.
Возвращает
Строку
. The primary key ID of the row.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_id_column_name();
Код ORM::get_id_column_name() ORM::get id column name Yoast 24.0
protected function get_id_column_name() { if ( ! \is_null( $this->instance_id_column ) ) { return $this->instance_id_column; } return 'id'; }