Changes between Initial Version and Version 1 of Ticket #40370, comment 18
- Timestamp:
- 01/24/2021 01:25:51 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #40370, comment 18
initial v1 26 26 27 27 $format = "{$this->size['width']}x{$this->size['height']}"; 28 return apply_filters('get_image_filename_suffix', $format );28 return apply_filters('get_image_filename_suffix', $format, $size_name ); 29 29 } 30 30 }}} 31 The filter could allow devs to override the naming format for image thumbnails. Of course, having the naming convention altered to fix this altogether would be fantastic and a preferred solution to thispatch.31 The filter could allow devs to override the naming format for image thumbnails. But that would also require passing the requested size name to the filter. So having the naming convention altered in WP Core to fix this altogether would be fantastic and a preferred solution to this "filter" patch. 32 32 33 33 Either way would love to hear about any progress that has been made on this bug. @azaozz it seems like you were last involved in some conversations on this?