Last active
December 9, 2022 13:32
-
-
Save vishalkakadiya/5b3cdda0729cc69920701b0158b5716a to your computer and use it in GitHub Desktop.
Fix sizes attribute to improve Lighthouse score for Image gallery with two images.
This file contains 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
<?php | |
/** | |
* Modified version of https://core.trac.wordpress.org/attachment/ticket/45985/45985-regular-images.patch patch for testing. | |
* Full credit goes to that patch owner. | |
*/ | |
/** | |
* Add custom `sizes` attribute to responsive image functionality for post content images. | |
* | |
* @since Twenty Nineteen 1.0 | |
* | |
* @param string $sizes A source size value for use in a 'sizes' attribute. | |
* | |
* @return string A source size value for use in a content image 'sizes' attribute. | |
*/ | |
function twentynineteen_calculate_image_sizes_attr( $sizes ) { | |
if ( is_admin() ) { | |
return $sizes; | |
} | |
return '(min-width: 768px) calc(((8 * (100vw / 12) - 28px) / 2 ) - 0.5rem), (min-width: 1168px) calc(((6 * (100vw / 12) - 28px) / 2) - 0.5rem), calc(((100vw / 2) - 0.5rem) - (2 * 1rem))'; | |
} | |
add_filter( 'wp_calculate_image_sizes', 'twentynineteen_calculate_image_sizes_attr', 10 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment