WP_MS_Users_List_Table::column_name() WordPress Method

The WP_MS_Users_List_Table::column_name() method is used to display a list of all the users in a WordPress Multisite installation. This is a useful tool for site administrators who need to keep track of all the users on their site.

WP_MS_Users_List_Table::column_name( WP_User $user ) #

Handles the name 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_name( $user ) {
		if ( $user->first_name && $user->last_name ) {
			echo "$user->first_name $user->last_name";
		} elseif ( $user->first_name ) {
			echo $user->first_name;
		} elseif ( $user->last_name ) {
			echo $user->last_name;
		} else {
			echo '<span aria-hidden="true">&#8212;</span><span class="screen-reader-text">' . _x( 'Unknown', 'name' ) . '</span>';
		}
	}


Top ↑

Changelog

Changelog
VersionDescription
4.3.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.