Improve image handling approach in Modern Image Formats #1259
Labels
Needs Dev
Anything that requires development (e.g. a pull request)
no milestone
PRs that do not have a defined milestone for release
[Plugin] Modern Image Formats
Issues for the Modern Image Formats plugin (formerly WebP Uploads)
[Type] Enhancement
A suggestion for improvement of an existing feature
Feature Description
Switch from using
the_content
filter to usingwp_calculate_image_srcset
when replacing images.As @joemcgill points out in #1236 (review) we should probably switch the image processing approach. Currently the
webp_uploads_update_image_references
function is attached tothe_content
filter and processes all images on the page using a regex. Instead, we can leverage the filters core runs on images after it does a similar regex against the content. Namely, thewp_calculate_image_srcset
orwp_content_img_tag
filters are potential places to add our logic.The text was updated successfully, but these errors were encountered: