Demonstration

Code

Simply put the code bellow in your theme’s functions.php file.

function mediaColumnsHeader($columns) {
	$columns['medID'] = __('ID');
	return $columns;
}

add_filter( 'manage_media_columns', 'mediaColumnsHeader' );

function mediaColumnsRow($columnName, $columnID){
	if($columnName == 'medID'){
		echo $columnID;
	}
}

add_filter( 'manage_media_custom_column', 'mediaColumnsRow', 10, 2 );

Our WordPress themes
We have a few WordPress themes that we would like you to take a look at if you want.
check out the portfolio