As of version 0.2.2 you can select which post types you’d like to have the image column. It simply adds a column before the title (far left) the show’s the posts featured image if it’s supported and exists. Want to change the default image? Simply filter you own image by using featured_image_column_default_image or filter your own CSS by using the featured_image_column_css filter hook. Example actions/filters Change thumbnail size function my_custom_featured_image_size(mixed $size, int $post_id): mixed { if (in_array($post_id, [1, 5, 23], true)) { return [65. 65]; } return $s...
Read the full description on WordPress.org →