Fix media regenerate dropping site-icon-specific image sizes#223
Merged
swissspidy merged 3 commits intomainfrom Feb 25, 2026
Merged
Fix media regenerate dropping site-icon-specific image sizes#223swissspidy merged 3 commits intomainfrom
media regenerate dropping site-icon-specific image sizes#223swissspidy merged 3 commits intomainfrom
Conversation
Co-authored-by: swissspidy <[email protected]>
Copilot
AI
changed the title
[WIP] Fix media regenerate not recreating custom site-icon sizes
Fix Feb 25, 2026
media regenerate dropping site-icon-specific image sizes
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
This comment was marked as resolved.
This comment was marked as resolved.
swissspidy
reviewed
Feb 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When
wp media regenerateruns on a site-icon attachment (the cropped image created via Customizer → Site Identity), it callswp_generate_attachment_metadata()without theWP_Site_Iconfilters that WordPress core applies during site icon creation — resulting in the custom sizes (32, 180, 192, 270px) being lost and replaced with only the standard registered sizes.Changes
src/Media_Command.php: Addedadd_site_icon_filter()method that detects site-icon attachments via the_wp_attachment_context = 'site-icon'post meta and temporarily hooksWP_Site_Icon::additional_sizesontointermediate_image_sizes_advanced— mirroring what WordPress core does inwp-admin/includes/ajax-actions.php. The filter is added before and removed afterwp_generate_attachment_metadata().features/media-regenerate.feature: Added@require-wp-4.3scenario that imports an image, marks it as a site icon via post meta, regenerates, and assertssite_icon-32/180/192/270keys are present in the attachment metadata.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.