How do I add a new custom column to wordpress wp-admin/edit-comments.php page ? I tried this but did not work.
add_filter( 'manage_comments_custom_column', 'add_new_columns' );
function add_new_columns($columns){
$column_meta = array( 'reported' => 'Reported' );
$columns = array_slice( $columns, 0, 4, true ) + $column_meta + array_slice( $columns, 6, NULL, true );
return $columns;
}