WP_MS_Users_List_Table::column_registered() WordPress Method

The WP_MS_Users_List_Table::column_registered() method is used to display the date on which a user registered for a site in a multisite installation.

WP_MS_Users_List_Table::column_registered( WP_User $user ) #

Handles the registered date 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_registered( $user ) {
		global $mode;
		if ( 'list' === $mode ) {
			$date = __( 'Y/m/d' );
		} else {
			$date = __( 'Y/m/d g:i:s a' );
		}
		echo mysql2date( $date, $user->user_registered );
	}


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.