WP_MS_Users_List_Table::column_id()publicWP 4.4.0

Handles the ID column output.

Method of the class: WP_MS_Users_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_MS_Users_List_Table = new WP_MS_Users_List_Table();
$WP_MS_Users_List_Table->column_id( $user );
$user(WP_User) (required)
The current WP_User object.

Changelog

Since 4.4.0 Introduced.

WP_MS_Users_List_Table::column_id() code WP 6.5.2

public function column_id( $user ) {
	echo $user->ID;
}