Add Additional Image Sizes to your WordPress Theme


Categories
Tags
WordPress gives you three different image sizes to set in the media settings of the dashboard, but sometimes it’s handy to add a few more to your theme to use around your website.

By default, you can set a thumbnail size, a medium size and a large size. It is possible however, to add in a few additional image sizes with just a little code in the functions file, by using WordPress’ in-built function: add_image_size.

Enable Post Thumbnails

Firstly, you’ll need to add support for post thumbnails if you haven’t already:

add_theme_support( 'post-thumbnails' );

Add Images Sizes

Then add some extra images sizes:

//Additional media sizes
add_image_size( 'large-thumb', 200, 200, true ); // Hard Crop Mode
add_image_size( 'homepage-thumb', 300, 200 ); // Soft Crop Mode
add_image_size( 'singlepost-thumb', 500 ); // Unlimited Height Mode

The add_image_size function takes the following parameters: add_image_size(‘your-label’, width, height, crop mode);

The following crop modes are available:

  1. Hard crop – crops images to exact dimensions, either from the sides or from the top and bottom
  2. Soft crop – resizes the image proportionally and without distortion. Often it’s the width that is maintained with the height being variable
  3. Unlimited height – allows you to specify a width, whilst leaving the height as unlimited

Display Image Sizes

You can call one of your media sizes like so, just change the label to match the image size you want to use:

echo the_post_thumbnail('thumbnail');

Regenerate Thumbnails

If you want previous images to have these new image sizes then you’ll need to regenerate them. You can do this with the Regenerate Thumbnails plugin by Alex Mills.

You can learn more about the add_image_size function on the WordPress Code Reference.

Comments

Whether you have feedback, a question, want to share your opinion, or simply want to say thank you - we welcome comments! Please read the disclaimer.

Disclaimer and Legal Information

The use of any content found on or via this website (code, how to guides etc.) is done so at your own risk. We take no responsibility for any issues encountered.

This blog and its authors will not be held responsible for any misuse, reuse, recycled and cited/uncited copies of content from this website by others.

The views and opinions expressed in this blog are those of the author(s) and do not necessarily reflect the position or opinion of any other agency, organisation, employer or company.

Comments are moderated but we do not take any responsibility for any libel or litigation that results from something written in a comment. We reserve the right to reject or delete any comment for any reason whatsoever (abusive, profane, rude etc). Please keep your comments polite and relevant.

We are happy for you to quote and share our content in any reasonable manner, e.g. post links to our blogs on social media, but not in any way that suggests that we, or our authors, endorse you, your use or your views. Nothing negative please.

We appreciate attributions, e.g. a link to our website (www.dragoncode.co.uk).

Thank you – we hope you find the website useful.