Closed lmartins closed 7 years ago
It's a bit of a difficult thing to deal with, but yes you can achieve this by specifying the IDs of the other columns in your admin_cols
array. For example:
'admin_cols' => array(
'title',
'sku',
'brand' => array(
'taxonomy' => 'brand'
),
'stock',
'price',
...
)
Hi,
Im extending an existing post type to add a few admin columns. By default it seems that the columns added by extended-cpts are placed first in the post list:
The brand column was created with the library. Do we have an option to control how the added columns are displayed on the list?