Arms crossed picture of James Auble
screenshot of img tag in devtools showing srcset and sizes attribute

Ensure Retina/High-Resolution Image Rendering For Custom Wordpress Theme

PublishedFeb 28th, 2022

Image Srcset 

Wordpress image template tags such as get_the_post_thumbnail() and wp_get_attachment_image() leverage the <img /> tag using the browsers conditional image rendering by using the srcset and sizes attributes.

Understanding how these attribute values are parsed by the browser is critical to understanding image rendering with Wordpress template tags, and I encourage you to first study these concepts before continuing with this article. MDM provides a decent explanation of these attributes in their article on responsive images.

Leveraging Wordpress Image Conversion 

It’s important to also understand that Wordpress does not convert image sizes on the fly. Instead, Wordpress automatically converts images when they’re uploaded in the admin to various sizes based on Wordpress’s own presets and any sizes that are specified in your custom theme by way of the add_image_size() function.

With this in mind, we can use add_image_size() to ensure that proper image sizes are pre-converted and ready to deliver to the browser.

Let’s say for example we have a custom logo that we know we want to render at 400x by 100x. We can add the following functions to our functions.php file to ensure that when the site admin uploads the custom logo (actually any image) Wordpress prepares a 1x and 2x version of our image for responsive image loading.

add_image_size('custom_logo', 400, 9999, false);
add_image_size('custom_logo_2X', 800, 9999, false);

UPDATE: According to a footnote on the WordPress page and several unrelated articles, there may be unwanted side-effects if the height argument is not passed or is passed false/null. Therefore, the above lines now include 9999 for unconstrained heights.

Go ahead and upload any image and check your /wp-content/uploads/ directory and you’ll find that your images have been converted to not only the Wordpress preset sizes — but also a 400x wide version and a 800x version.

screenshot of down-converted image files in the wordpress uploads directory

Finally — so that we’re on the same page — navigate to the theme customizer and selected this image for your theme’s logo.

In The Browser 

By now you should have a decent understanding of how srcset and sizes attributes in <img /> tags work.

Let’s use the following snippet to render our img tag:

<?php 
  echo wp_get_attachment_image(
    get_theme_mod('custom_logo'), 
    'custom_logo', 
    false, 
    array('style' => 'width: 400px; height: auto;')
  );
?>

NOTE: As of I don't know when, to take advantage of large images in your srcset, you may need to raise the limit on srcset images to be included. See https://wordpress.stackexchange.com/questions/316853/control-the-srcset-much-more-not-all-sizes-in-it-each-time

We passed the following arguments:

  • The ID of the image attachment
  • The name of the image size that we created above when we used add_image_size() Note: We are using the name of the 1x sized image. This is important as the choice to use the 2X sized image is done by our browser if it detects you are using a high resolution screen.
  • Boolean saying not to treat the image as an icon.
  • An array with an attribute specifying the inline style for our element. In this case, we are saying we want the image to be rendered at a width of 400 CSS pixels. Note: This is not critical to our demo and can just as easily be done with CSS.
screenshot of img element with annotations

Above is what is rendered out — with the key points numbered.

Let’s go over them:

  1. We see our two custom image sizes we created earlier with add_image_size(). This is critical, because one of these two images will be selected by the browser. If we hadn’t done this, our browser would have to select from some other image size and probably rendered an image that was unnecessarily big for our container size (400 width).
  2. Our inline styles setting the container size of 400 width with height of auto.
  3. Last — and most important — we have our sizes attribute. In the background, Wordpress has called a function called wp_calculate_image_sizes() and determined that our image size should be rendered at 400px on devices where your hardware pixels and CSS pixels have a 1-to-1 ratio. The magic being done by the browser here is important. On a high resolution/retina device, the browser looks at this number (400px in our case) and multiplies by the device resolution factor (let’s say 2X) and ends up with 800px. It then goes looking through the available images found in the srcset attribute and finds the smallest image that has a minimum of 800w.

Conclusion 

If you use your devtools and set your view mode to responsive mode, you can test your image rendering at various resolution factors and notice the behavior. Be aware that your browser is using efficient caching so you need to make sure you are clearing the cache often to correctly see which images are being loaded.

Hope this helps clear up retina images in Wordpress for y’all.

Code on web assassins!

Need a web developer?

Contact Me
Back to Blog
Scrolldown Icon