Skip to content

Instantly share code, notes, and snippets.

@gvgvgvijayan
Created January 23, 2021 09:47
Show Gist options
  • Save gvgvgvijayan/5e1cfc08746d47f02205688914816e84 to your computer and use it in GitHub Desktop.
Save gvgvgvijayan/5e1cfc08746d47f02205688914816e84 to your computer and use it in GitHub Desktop.
<?php
...
/**
* Include the columns which can be sortable.
*
* @return Array $sortable_columns Return array of sortable columns.
*/
public function get_sortable_columns() {
return array(
'title' => array( 'title', false ),
'type' => array( 'type', false ),
'date' => array( 'date', false ),
'author' => array( 'author', false ),
);
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment