Site logo

Archived topic

Media Attachment Size

1 reply · Started by Igor on November 26, 2021

Viewing posts 1–2 of 2

WordPress generates different sizes for one image.
How to make pictures of different sizes displayed on a computer screen - full size(1200px), and on a mobile device - medium large size(768px)?

Hi there,

the browser will select the image that is most appropriate for its screen size and resolution.
However if you want you can 'nudge' the browser to use specific sizes using this PHP Snippet:

function db_modify_srcset_sizes($sizes, $size) {
    $sizes = '(max-width: 768px) 768px, (min-width: 769px) 1024px, 100vw';
	return $sizes;
}
add_filter('wp_calculate_image_sizes', 'db_modify_srcset_sizes', 10 , 2);
This archived topic is closed to new replies.