Enhances media library thumbnails by making them larger and replacing the bundled icons with scalable SVG versions.
Makes media library thumbnails match the WordPress thumbnail size or allows you to choose a new size in Settings: Media (or hard code a custom size named ‘mte_thumbnail’).
Also replaces the default “Crystal” file type icons with smoothly scaling SVG icons that better match the WordPress 3.8+ design.
plugin
folder to the /wp-content/plugins/
directory or install via the Add New Plugin menuYes! Just go to Settings: Media and look for “Media Library Thumbnails”.
Note that this will not appear if the size has been hardcoded (see next FAQ).
To set a custom size, add the line below to functions.php (or a plugin) and adjust the dimensions as needed.
add_image_size( 'mte_thumbnail', 300, 300, true );
You may need to rebuild your thumbnails:
https://wordpress.org/plugins/ajax-thumbnail-rebuild/
Or install WP_Thumb so they can be generated on the fly:
https://wordpress.org/plugins/wp-thumb/
Fix intitial run bug where mte_thumbnail_ud was being incorrectly defined