WP_MS_Users_List_Table::column_email( WP_User $user )

In this article

Handles the email column output.

Parameters

$userWP_Userrequired
The current WP_User object.

Source

public function column_email( $user ) {
	echo "<a href='" . esc_url( "mailto:$user->user_email" ) . "'>$user->user_email</a>";
}

Changelog

VersionDescription
4.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.