Summery Summery
Get a list of sortable columns for the list table.
Syntax Syntax
Return Return
(array) Array of sortable columns.
Source Source
File: wp-admin/includes/class-wp-users-list-table.php
	protected function get_sortable_columns() {
		$c = array(
			'username' => 'login',
			'email'    => 'email',
		);
		return $c;
	}
			Advertisement
Changelog Changelog
| Version | Description | 
|---|---|
| 3.1.0 | Introduced. | 
