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