Gets a list of sortable columns.
Description
The format is:
'internal-name' => 'orderby'
'internal-name' => array( 'orderby', bool, 'abbr', 'orderby-text', 'initially-sorted-column-order' )
–'internal-name' => array( 'orderby', 'asc' )
– The second element sets the initial sorting order.'internal-name' => array( 'orderby', true )
– The second element makes the initial order descending.
In the second format, passing true as second parameter will make the initial sorting order be descending. Following parameters add a short column name to be used as ‘abbr’ attribute, a translatable string for the current sorting, and the initial order for the initial sorted column, ‘asc’ or ‘desc’ (default: false).
Source
protected function get_sortable_columns() {
return array();
}
'title' => array( 'title' => false )
instead of'title' => array( 'title', false )
. So my problem is to use comma instead of=>
.