Hi, would it be possible to show the time of published posts on the posts list on the admin? All information we have is the date but the time would be interesting, for example manage scheduled posts.
Any idea how to do that? Thanks! :)
Hi, would it be possible to show the time of published posts on the posts list on the admin? All information we have is the date but the time would be interesting, for example manage scheduled posts.
Any idea how to do that? Thanks! :)
in the posts' page in admin, the data and time will be shown if you hover with the mouse pointer over the date.
as far as i could find, this is defined in wp-admin/includes/template.php line 1327:
echo '<abbr title="' . $t_time . '">' . apply_filters('post_date_column_time', $h_time, $post, $column_name, $mode) . '</abbr>';
if you change $h_time into $t_time in the above line, then you will have date and time in the column. (changes will be lost with the next upgrade)
Hi alchymyth. Thanks for your answer, this is a solution indeed and I think I'm going to try it. Only problem is like you said, changes will be lost with the next upgrade...
I already found a plugin to show IDs of posts using Simply Show IDs and it works great. Maybe the solution would be to make a plugin to show the time so it won't change with the upgrades.
If any plugin developer read this message, or even better, WP developers for the next upgrade, who knows ;)
This topic has been closed to new replies.