WP_MS_Users_List_Table::column_email() WordPress Method

The WP_MS_Users_List_Table::column_email() method is used to display the email address for a user in the WordPress Multisite Users list table.

WP_MS_Users_List_Table::column_email( WP_User $user ) #

Handles the email 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_email( $user ) {
		echo "<a href='" . esc_url( "mailto:$user->user_email" ) . "'>$user->user_email</a>";
	}


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.