diff --git a/src/wp-admin/includes/class-wp-posts-list-table.php b/src/wp-admin/includes/class-wp-posts-list-table.php index 2c51601d4a..0ab6890648 100644 --- a/src/wp-admin/includes/class-wp-posts-list-table.php +++ b/src/wp-admin/includes/class-wp-posts-list-table.php @@ -831,6 +831,18 @@ class WP_Posts_List_Table extends WP_List_Table { } } + if ( 'publish' == $post->post_status ) { + _e( 'Published' ); + } elseif ( 'future' == $post->post_status ) { + if ( $time_diff > 0 ) { + echo '' . __( 'Missed schedule' ) . ''; + } else { + _e( 'Scheduled' ); + } + } else { + _e( 'Last Modified' ); + } + echo '
'; if ( 'excerpt' == $mode ) { /** * Filter the published time of the post. @@ -852,18 +864,6 @@ class WP_Posts_List_Table extends WP_List_Table { /** This filter is documented in wp-admin/includes/class-wp-posts-list-table.php */ echo '' . apply_filters( 'post_date_column_time', $h_time, $post, 'date', $mode ) . ''; } - echo '
'; - if ( 'publish' == $post->post_status ) { - _e( 'Published' ); - } elseif ( 'future' == $post->post_status ) { - if ( $time_diff > 0 ) { - echo '' . __( 'Missed schedule' ) . ''; - } else { - _e( 'Scheduled' ); - } - } else { - _e( 'Last Modified' ); - } } /**