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().

Method of the class: WP_List_Table{}

No Hooks.

Return

String. Name of the default primary column.

Usage

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

Changelog

Since 4.4.0 Introduced.

WP_List_Table::get_primary_column() code WP 6.5.2

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