How to Display post attachment count in admin column in WordPress
Sometimes you have a post with multiple attachments and it would be nice to see a count of the total media attached to a post. To see this you only need add this snippet to the functions.php
add_filter('manage_posts_columns', 'posts_columns_attachment_count', 5);...