Problem:
How to modify the format of the date shown on a backend post listing page?
Solution:
Toolset does not influence that.
Here is one generic solution from a Stack Overflow answer:
add_filter( 'post_date_column_time' , 'my_post_date_column_time' , 10 , 2 ); function my_post_date_column_time( $h_time, $post ) { $h_time = get_post_time( 'd/m/Y', false, $post ); return $h_time; }
Relevant Documentation:
https://wordpress.stackexchange.com/questions/19206/how-to-change-published-date-format-on-edit-php-posts-page
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
- | 7:00 – 14:00 | 7:00 – 14:00 | 7:00 – 14:00 | 7:00 – 14:00 | 7:00 – 14:00 | - |
- | 15:00 – 16:00 | 15:00 – 16:00 | 15:00 – 16:00 | 15:00 – 16:00 | 15:00 – 16:00 | - |
Supporter timezone: Europe/London (GMT+00:00)
This topic contains 2 replies, has 2 voices.
Last updated by 6 years, 5 months ago.
Assisted by: Nigel.