W3cubDocs

/WordPress

WP_MS_Sites_List_Table::column_lastupdated( array $blog )

Handles the lastupdated column output.

Parameters

$blogarrayrequired
Current site.

Source

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'] );
	}
}

Changelog

Version Description
4.3.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_ms_sites_list_table/column_lastupdated