WP_Terms_List_Table::get_default_primary_column_name() WordPress Method
WP_Terms_List_Table::get_default_primary_column_name() is a method used to get the default primary column name for a terms list table. This column is used to sort and filter terms.
WP_Terms_List_Table::get_default_primary_column_name() #
Gets the name of the default primary column.
Return
(string) Name of the default primary column, in this case, 'name'.
Source
File: wp-admin/includes/class-wp-terms-list-table.php
protected function get_default_primary_column_name() { return 'name'; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |