Ticket #3404: edit2.patch
| File edit2.patch, 735 bytes (added by , 20 years ago) |
|---|
-
wp-admin/edit.php
127 127 <?php 128 128 // define the columns to display, the syntax is 'internal name' => 'display name' 129 129 $posts_columns = array( 130 'id' => __('ID'),130 'id' => '<div style="text-align: center">' . __('ID') . '</div>', 131 131 'date' => __('When'), 132 132 'title' => __('Title'), 133 133 'categories' => __('Categories'), 134 'comments' => __('Comments'),134 'comments' => '<div style="text-align: center">' . __('Comments') . '</div>', 135 135 'author' => __('Author') 136 136 ); 137 137 $posts_columns = apply_filters('manage_posts_columns', $posts_columns);