WP_List_Table::get_primary_column()
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 List Table::get primary column WP 6.6.1
public function get_primary_column() { return $this->get_primary_column_name(); }