Make WordPress Core

Ticket #40860: 40860.patch

File 40860.patch, 678 bytes (added by pratikgandhi, 8 years ago)

To display the time of the modified post

  • src/wp-admin/includes/class-wp-posts-list-table.php

     
    981981                } else {
    982982                        $t_time = get_the_time( __( 'Y/m/d g:i:s a' ) );
    983983                        $m_time = $post->post_date;
    984                         $time = get_post_time( 'G', true, $post );
     984                        if ( 'publish' === $post->post_status || 'future' === $post->post_status ) {
     985                                $time = get_post_time( 'G', true, $post );
     986                        } else {
     987                                $time = get_post_modified_time( 'G', true, $post );
     988                        }
    985989
    986990                        $time_diff = time() - $time;
    987991