Filter hook 'post_date_column_time'

in WP Core File wp-admin/includes/class-wp-posts-list-table.php at line 1249

Description

Filters the published, scheduled, or unpublished time of the post. The published time and date are both displayed now, which is equivalent to the previous 'excerpt' mode.

Occurrences

Filename Line Number
wp-admin/includes/class-wp-posts-list-table.php 1249

Parameters

Type Name Description
string $t_time The published time.
WP_Post $post Post object.
string $column_name The column name.
string $mode The list display mode ('excerpt' or 'list').

PHP Doc

/**
		 * Filters the published, scheduled, or unpublished time of the post.
		 *
		 * @since 2.5.1
		 * @since 5.5.0 Removed the difference between 'excerpt' and 'list' modes.
		 *              The published time and date are both displayed now,
		 *              which is equivalent to the previous 'excerpt' mode.
		 *
		 * @param string  $t_time      The published time.
		 * @param WP_Post $post        Post object.
		 * @param string  $column_name The column name.
		 * @param string  $mode        The list display mode ('excerpt' or 'list').
		 */