WP_MS_Users_List_Table::get_sortable_columns() WordPress Method
The WP_MS_Users_List_Table::get_sortable_columns() method is used to get the list of columns that are sortable for the current table.
WP_MS_Users_List_Table::get_sortable_columns() #
Return
(array)
Source
File: wp-admin/includes/class-wp-ms-users-list-table.php
protected function get_sortable_columns() { return array( 'username' => 'login', 'name' => 'name', 'email' => 'email', 'registered' => 'id', ); }
Expand full source codeCollapse full source codeView on TracView on GitHub