So I uploaded a lot of similar looking photos, and uploaded a duplicate or two.
I go into the backend to the Media panel, but alas, each row has a small thumbnail, making it time consuming to figure out which ones are the duplicates, or just to tell them apart.
How would I make the image bigger? At the moment it is 60×60 but 128×128 would be nicer or maybe even larger!
Just to clarify, I am talking about the admin area, not the frontend/theme
I don’t see any way of hooking into this. Following the lead of
wp_get_attachment_image
takes nowhere…Inspecting the output we see that the image is being forcefully resized, so manipulating the DOM can be an alternative.
edit by Question asker ( Tom ):
I applied the solution in this question, and these are the results:
Expanding on brasofilo’s solution I used the below to enlarge the thumbnails within the media uploader / gallery
Its far from perfect and needs more time spent – most noticeably with the active draggable area remaining the same as previous when resorting – but if you’re dealing with 10’s of similar images attached to a single post I found it a huge help as is.
What your asking isn’t a “simple” fix. If you’re serious about getting larger thumbs I’d start by looking at the
wp-admin/class-wp-media-list-table.php
file, or here in the PHPXref site (Around line 203). You can examine the code to see how it’s generated and decide how to adjust it from there