WP_MS_Users_List_Table::column_id() WordPress Method

This method is used to generate the id column for the users list table.

WP_MS_Users_List_Table::column_id( WP_User $user ) #

Handles the ID column output.


Parameters

$user

(WP_User)(Required)The current WP_User object.


Top ↑

Source

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

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

Top ↑

Changelog

Changelog
VersionDescription
4.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.