$default_sortable_columns
$default_sortable_columns : array
Sortable column definitions
This array defines the table columns that can be sorted. The array key
is the column slug that needs to be sortable, and the value is database column
to sort by. Often, the key and value will be the same, but this is not always
the case (as the value is a column name from the database, not the list table).
The array value also contains a boolean which is 'true' if the initial sort order
for the column is DESC/Descending.
Type
array
— {
@type array $$column_slug {
@type string $orderby_name Database column or other sorting slug.
@type boolean $descending Optional. True to make the initial orderby DESC.
}
}