WP_MS_Sites_List_Table::column_lastupdated()publicWP 4.3.0

Handles the lastupdated column output.

Method of the class: WP_MS_Sites_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_MS_Sites_List_Table = new WP_MS_Sites_List_Table();
$WP_MS_Sites_List_Table->column_lastupdated( $blog );
$blog(array) (required)
Current site.

Notes

  • Global. String. $mode List table view mode.

Changelog

Since 4.3.0 Introduced.

WP_MS_Sites_List_Table::column_lastupdated() code WP 6.5.2

public function column_lastupdated( $blog ) {
	global $mode;

	if ( 'list' === $mode ) {
		$date = __( 'Y/m/d' );
	} else {
		$date = __( 'Y/m/d g:i:s a' );
	}

	if ( '0000-00-00 00:00:00' === $blog['last_updated'] ) {
		_e( 'Never' );
	} else {
		echo mysql2date( $date, $blog['last_updated'] );
	}
}