I have a custom post type and trying to set custom columns, the date column is there by default, and it appears right after the title. Do I have to unset the date first and then re-apply it, or is there a more elegant way of achieving this:
function custom_columns($columns) {
unset( $columns['date'] );
$columns = array_merge($columns, array(
'title' => 'Alert Title',
'region' => 'Region',
'date' => 'Date',
)
);
return $columns;
}