summaryrefslogtreecommitdiffstats
path: root/wp-admin/edit.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-admin/edit.php')
-rw-r--r--wp-admin/edit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-admin/edit.php b/wp-admin/edit.php
index 395bc6b..529ca15 100644
--- a/wp-admin/edit.php
+++ b/wp-admin/edit.php
@@ -127,11 +127,11 @@ if ( count($arc_result) ) { ?>
<?php
// define the columns to display, the syntax is 'internal name' => 'display name'
$posts_columns = array(
- 'id' => __('ID'),
+ 'id' => '<div style="text-align: center">' . __('ID') . '</div>',
'date' => __('When'),
'title' => __('Title'),
'categories' => __('Categories'),
- 'comments' => __('Comments'),
+ 'comments' => '<div style="text-align: center">' . __('Comments') . '</div>',
'author' => __('Author')
);
$posts_columns = apply_filters('manage_posts_columns', $posts_columns);