Move position in post list for a custom checkbox column
Quoting from https://www.isitwp.com/change-wordpress-admin-post-columns-order/ All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin: add_filter(‘manage_posts_columns’, ‘column_order’); function column_order($columns) { $n_columns = array(); $move=”author”; // what to move $before=”title”; // move before this foreach($columns as $key => $value) { if ($key==$before){ $n_columns[$move] = $move; } $n_columns[$key] = $value; … Read more