Summery Summery
Handles the lastupdated column output.
Syntax Syntax
Parameters Parameters
- $blog
-
(Required) Current site.
Source Source
File: wp-admin/includes/class-wp-ms-sites-list-table.php
global $mode; if ( 'list' === $mode ) { $date = __( 'Y/m/d' ); } else { $date = __( 'Y/m/d g:i:s a' ); } echo ( '0000-00-00 00:00:00' === $blog['last_updated'] ) ? __( 'Never' ) : mysql2date( $date, $blog['last_updated'] ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |