Responsive Images in WordPress: What You Need to Know

If you purchase through a link on our site, we may earn a commission. Learn more.

Learn what are responsive images, how it works in WordPress, and why it's important. Including considerations when manipulating the responsiveness of images.
Table of Contents
WP Engine High Performance Hosting
BionicWP Hosting

WordPress is a popular content management system that enables you to design sites without using code or with minimal usage of code. You can do that by installing themes that come with ready-made designs, and download plugins that add features to your site. 

Most WordPress themes come with a built-in responsive design, which adapts your site to the screen size and device specifications of your users. However, sometimes themes become buggy, images are not displayed properly, and then you need to troubleshoot responsive default settings. 

Additionally, if you change the default theme, you might encounter issues with responsive images. Understanding how responsive images work in WordPress can help you understand the source of the issue and apply the correct fix.

What Are Responsive Images?

Responsive images are images that are served to a user according to their screen size and device specifications. For example, a high-resolution image sent to a large HD monitor or a low-resolution image sent to a small, older cell phone. The purpose of responsive images is to maximize the efficiency of bandwidth use without compromising user experience. 

You can add responsive images by uploading multiple sizes or formats of an image. Then, when a user visits your site, you can use a combination of HTML, CSS, and JavaScript to serve the image that fits the user’s screen parameters.

Often, creating the various sizes and formats you need requires a bit of manual work. This is particularly true if you want to change the cropping of images to better suit specific screen sizes. Once your various sizes are saved, you need to host all of your images on your webserver to be served as needed. 

Alternatively, you can use tools, such as content delivery networks (CDNs) or digital asset management solutions (DAMs) to dynamically resize and serve images. This can be a simpler option if you have many images or multiple sites. Using these methods requires importing the appropriate library to your page scripts and making an API call for the image that is needed. 

Why You Should Use Responsive Images

There are many reasons you should use responsive images on your sites for your own and your users’ benefit. In addition to the below reasons, keep in mind that Google gives search preference to sites that have responsive images. 

  • Efficient bandwidth use—responsive images ensure that only the image that is most useful for a user is served and downloaded. This eliminates wasted bandwidth since you are not sending out files that are larger than what a user can actually use. It also makes your site more user-friendly, particularly to mobile users who often have limited data. 
  • Faster load time—the less data a user client has to download, the faster your page load time is. This is vital since many users are unwilling to wait more than a few seconds for a page to load and will leave a site if loading takes too long.
  • Improved user experience—when you add images to your site, you are doing so to give the user a specific experience. Responsive images ensure that users can view images in the way you intend, without warping or misplacement. This gives the user a more pleasant experience and makes them more likely to remain on your site. 

How Do Responsive Images Work in WordPress?

As of WordPress (WP) 4.4, adding images to your Media Library automatically sets you up for responsive images. When you upload an image, WP automatically creates five copies of your image at various sizes. These sizes include: 

  • Full—the original upload size
  • Large—max width or height of 1024px
  • Medium large—max width or height of 768px
  • Medium—max width or height of 300px
  • Thumbnail—max width or height of 150px

You can also modify these sizes or add additional sizes manually. 

To control how these sizes are used, WP includes the img tag attributes srcset and sizes. These attributes provide information to the browser about what sizes are available and when those sizes should be selected. 

In the srcset attribute, you assign an image width. The browser then checks the width and selects the largest image that matches the browser width or lower. In the size attribute, you specify the size the image should scale to. This enables you to select the most efficient image and ensure it displays in proportion to the screen.

An example of how this looks in your image tag can be seen below:

<img src="image/sample.jpeg"
    srcset="image/sample-tiny.jpeg 150w,
            image/sample-small.jpeg 300w,
            image/sample-medium.jpeg 600w,
            image/sample.jpeg 1000w"
    sizes="(min-width: 75rem) 60rem,
           (min-width: 50rem) 40rem,
           (min-width: 40rem) calc(100vw - 10rem),
           100vw"
    alt="A sample image">

Things You Should Know About Responsive Images

When working with responsive images, there are a few aspects you should keep in mind. These considerations can help you ensure that your images are displaying as you expect and that you’re users are getting the best possible experience.

“sizes” is optional with a catch

When defining your sizes attribute, you need to understand that it specifies the required image as well as the rendered width of the images. This means you have to take care to match the widths between images. If image widths differ between srcs you may end up with an image that is warped when it’s rendered. Additionally, if you use srcset without including sizes, you should be aware that client browsers will use a default width of 100vw. 

Image rendering varies by browser

Typically, browsers render the image size that best matches the viewport size. However, different browsers use different methods for how an image is selected so your user experience may be inconsistent. For example, some browsers will prioritize cached versions of images regardless of whether the size matches. 

This variability and lack of granular control mean you should not rely on srcset for design decisions. You should instead consider, for example, serving different images or images with different ratios to better suit specific devices. To accomplish this, you can use the <picture> element.

“srcset” is not a default

If you are using a theme developed by someone else, keep in mind that srcset is not implemented by default. Many themes, especially older ones do not include this or the sizes attributes. If you want to use these attributes, you need to either customize the theme you’re using or find a different theme that implements the attributes. 

If you aren’t sure whether your theme is using srcset and it doesn’t say in the theme documentation you can check manually. The easiest way to do this is to pull up one of your pages with an image on your desktop or laptop. Depending on your browser and OS, you should be able to right-click the image and choose Inspect. This enables you to look at the <img> element and see if srcset is implemented.

Retina Images

When thinking about responsive design, it’s also important to take retina images into consideration. Most screens nowadays require retina-ready images, so addressing this issue ensures that your images look beautiful and sharp on any device. You can set this up using the Perfect Images (WP Retina 2x) plugin.

Perfect Images (WP Retina 2x) plugin

This plugin creates the image files required by Retina (or high-DPI) devices and displays them on those screens accordingly. Retina images will be generated for you automatically as soon as you upload a new image to your media library.

The Perfect Images (WP Retina 2x) plugin works perfectly with the new WordPress responsive images support described above and adds the retina images to the src-set. It also gives you control over what WordPress is doing (e.g. it gives you the option to remove image sizes that are no longer required).

The plugin comes in both a free and premium version.

Conclusion

Responsive images are crucial for creating a positive user experience. When images are responsive, users are able to view files on any type of device without experiencing issues. You can also use responsive images to increase load times and efficiently use bandwidth. 

Most WordPress themes come with a set of responsive images configurations, but you can often make changes. Before making any changes to the default settings, you should ensure that you properly understand the consequences. To avoid data loss, be sure to backup your site in advance, and modify a child theme rather than the original file.

Leah Fainchtein Buenavida

I’m a technology writer with 15 years of experience, covering areas ranging from fintech and digital marketing to cybersecurity and coding practices. LinkedIn: https://www.linkedin.com/in/leahfainchteinbuenavida/

Discover more from our archives ↓

Popular articles ↓

Share Your Thoughts

Your email address will not be published. Required fields are marked *

Claim Your Free Website Tip 👇

Leave your name, email and website URL below to receive one actionable improvement tip tailored for your website within the next 24 hours.

"They identified areas for improvement that we had not previously considered." - Elliot

By providing your information, you'll also be subscribing to our weekly newsletter packed with exclusive content and insights. You can unsubscribe at any time with just one click.