diff --git a/wp-admin/includes/class-wp-media-list-table.php b/wp-admin/includes/class-wp-media-list-table.php index e1fa4058cc..4ab4134dfc 100644 --- a/wp-admin/includes/class-wp-media-list-table.php +++ b/wp-admin/includes/class-wp-media-list-table.php @@ -508,7 +508,16 @@ class WP_Media_List_Table extends WP_List_Table { } } - echo $h_time; + /** + * Filters the published time of the post. + * + * @since 6.0.0 + * + * @param string $h_time The published time. + * @param WP_Post $post Post object. + * @param string $column_name The column name. + */ + echo apply_filters( 'media_date_column_time', $h_time, $post, 'date' ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index c052b673fd..96dcbc33a7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52949'; +$wp_version = '6.0-alpha-52950'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.