WP_MS_Themes_List_Table::get_sortable_columns
Gets the list of sortable columns for the list table.
Method of the class: WP_MS_Themes_List_Table{}
No Hooks.
Returns
Array
Usage
// protected - for code of main (parent) or child class $result = $this->get_sortable_columns();
WP_MS_Themes_List_Table::get_sortable_columns() WP MS Themes List Table::get sortable columns code WP 7.0
protected function get_sortable_columns() {
return array(
'name' => array( 'name', false, __( 'Theme' ), __( 'Table ordered by Theme Name.' ), 'asc' ),
);
}