WP_Users_List_Table::get_sortable_columns()

Get a list of sortable columns for the list table.

Return

(array) Array of sortable columns.

Source

File: wp-admin/includes/class-wp-users-list-table.php

protected function get_sortable_columns() {
		$c = array(
			'username' => 'login',
			'email'    => 'email',
		);

		return $c;
	}

Changelog

Version Description
3.1.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_users_list_table/get_sortable_columns