Custom backend post list columns

add_filter( 'manage_edit-colourmedia_columns', 'colourmedia_columns' ) ; // init function
function colourmedia_columns( $columns ) {

	$columns = array(
		'cb' => '<input type="checkbox" />',
		'thumbnail' => __( 'Thumbnail' ),
		'category' => __( 'Category' ),
		'title' => __( 'Name' ),
		'city' => __( 'City' ),
		'featured' => __( 'Featured' ),
		
	);

	return $columns;
}

Author: Wojciech Borowicz

I hope this post will help you to do what you need.
In case you want some assistance click here to get in touch 

check out other blog posts