WP_List_Table::get_primary_column()publicWP 4.4.0

Gets the name of the primary column.

Public wrapper for WP_List_Table::get_default_primary_column_name().

Метод класса: WP_List_Table{}

Хуков нет.

Возвращает

Строку. Name of the default primary column.

Использование

$WP_List_Table = new WP_List_Table();
$WP_List_Table->get_primary_column();

Список изменений

С версии 4.4.0 Введена.

Код WP_List_Table::get_primary_column() WP 6.5.2

public function get_primary_column() {
	return $this->get_primary_column_name();
}