WP_Privacy_Requests_Table::get_sortable_columns
Gets a list of sortable columns.
Method of the class: WP_Privacy_Requests_Table{}
No Hooks.
Returns
Array. Default sortable columns.
Usage
// protected - for code of main (parent) or child class $result = $this->get_sortable_columns();
Changelog
| Since 4.9.6 | Introduced. |
WP_Privacy_Requests_Table::get_sortable_columns() WP Privacy Requests Table::get sortable columns code WP 6.9.1
protected function get_sortable_columns() {
/*
* The initial sorting is by 'Requested' (post_date) and descending.
* With initial sorting, the first click on 'Requested' should be ascending.
* With 'Requester' sorting active, the next click on 'Requested' should be descending.
*/
$desc_first = isset( $_GET['orderby'] );
return array(
'email' => 'requester',
'created_timestamp' => array( 'requested', $desc_first ),
);
}