diff --git a/wp-admin/edit.php b/wp-admin/edit.php index 6d03527514..b79f6396b9 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -39,7 +39,7 @@ if ( !in_array($_GET['post_status'], array('pending', 'draft')) ) $posts_columns['date'] = __('When'); $posts_columns['title'] = __('Title'); $posts_columns['categories'] = __('Categories'); -if ( 'publish' == $_GET['post_status'] ) +if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) ) $posts_columns['comments'] = '
' . __('Comments') . '
'; $posts_columns['author'] = __('Author');