WP_Terms_List_Table::get_sortable_columns() WordPress Method
The WP_Terms_List_Table::get_sortable_columns() method is used to retrieve the sortable columns for the terms list table.
WP_Terms_List_Table::get_sortable_columns() #
Return
(array)
Source
File: wp-admin/includes/class-wp-terms-list-table.php
protected function get_sortable_columns() { return array( 'name' => 'name', 'description' => 'description', 'slug' => 'slug', 'posts' => 'count', 'links' => 'count', ); }
Expand full source codeCollapse full source codeView on TracView on GitHub