WordPress News, Reviews, Tips & Tricks | The WP Stack
Tutorials

How to Change WordPress Featured Image Size

wordpress featured image size

It was over a decade ago that featured images became a staple of WordPress. Yet, there are still no standardized dimensions for featured images. This means you may have some work to do if you want to change WordPress featured image size.

Like many WordPress tasks, you can use the built-in functionality to alter sizes. You could also use code to change WordPress featured image size.

As such, this post is going to show you how to change WordPress featured image size in a couple of ways. Before this, let’s give you a brief introduction to featured images in general.

A Brief Introduction to WordPress Featured Images

Featured images became a part of WordPress 2.9 and were first called Post Thumbnails. By now, the majority of themes use featured images, unless there’s a unique aesthetic in play.

They’re a fixture in most WordPress designs for a few reasons:

Despite how useful they are, WordPress featured images aren’t always straightforward to customize. Next, we’ll discuss a couple of ways to change the size.

How to Change WordPress Featured Image Size

For this section, we’ll show you a direct way to change WordPress featured image size. This is going to be applicable if the default size isn’t proprietary. Let’s focus on this point first.

1. Find Out What Size Your Featured Images Use

Featured image sizes are not created equal. To find out what size your theme uses, there are a few outlets:

Your goal is to find out if the featured image size matches one of the presets within WordPress.

If none of the above is fruitful, you’ll have to investigate yourself.

To do this, open a blog post in your favorite browser, and inspect the element. This is going to be different depending on your browser. In Firefox, you right-click and select Inspect Element:

Next, make sure you’re in the Inspector screen – in other words, you can see the HTML code. From here, select the HTML tag that corresponds to the featured image.

Depending on your WordPress site, you may see something different to our example. Regardless, look for a class called featured-image or post-thumbnail:

You’ll also see some nested HTML tags here – our focus is on the img tag. For this, you’ll want to see whether there’s a class that determines the image’s size:

Once you have this, you’ll want to move onto step two. In contrast, if there’s no defined size class, check out a later section on custom image sizes.

2. Set the Featured Image Size Within WordPress

If WordPress featured image size has a class to define its dimensions, changing it is a snap. To do this, head into your WordPress dashboard, and navigate to the Settings > Media page:

This page lets you change the sizes for preset image sizes. These are the same options you find in the Image Block’s settings.

Here, you should change the settings relating to the class of the featured image size. For example, if you see a size-large class, you’ll only want to change the Large size setting.

It’s worth noting that this will change the dimensions for all images using the same size. Because of this, you may want to set a custom WordPress featured image size.  We’ll show you how to do this later.

3. Regenerate Your Thumbnails

There’s one more step in changing WordPress featured image size. You’ll need to regenerate your thumbnails. In other words, the changes you’ve made will only affect new uploaded images. As such, you need to regenerate your other featured images.

To do this, we recommend a plugin such as Regenerate Thumbnails:

First, install and activate the plugin. You’ll find the relevant settings on the Tools > Regenerate Thumbnails screen:

While there’s a lot of information here, you’ll only need one button. Here, you can click the Regenerate Thumbnails For Featured Images button.

Once WordPress has done its thing, your featured images will have changed. Remember, this will also change the size of other images using the same dimensions too.

How to Change a Custom WordPress Featured Image Size

Earlier, we noted that you may not see a defined image class when viewing the HTML. In these cases, you’ll need to find the featured image size and associated class.

There are a couple of ways to do this. The simplest way is to install the Regenerate Thumbnails plugin. Once you head to WordPress’ Regenerate Thumbnails screen, you’ll see a list of image sizes:

Once will correspond to your featured image size. Next, you’ll want to see if your current theme has an option to change WordPress’ featured image size. If not, you’ll have to code something to do the job. Before you get your hands dirty, you’ll need:

From here, you’ll want to go to the Appearance > Theme Editor screen. Once you’re here, make sure you select your child theme from the top right-hand drop-down menu:

Next, look for the Theme Functions (functions.php) option in the sidebar, and open it in the editor:

The next job is to take the size class of your featured image, and use it to add the following code to the bottom of your file:

remove_image_size( ‘post-thumbnail’ );

add_image_size( ‘post-thumbnail, 900, 600, false);

This removes the existing image size from WordPress, and replaces it with your own. Of course, you’ll want to use the correct class here, and also define your own dimensions. Note that the false argument determines whether an image gets cropped or resized. To crop images to your set dimensions, use true.

Finally, save your changes, then regenerate your featured images as we outlined earlier. This should give you a custom WordPress featured image size.

In Summary

Featured images play an important role for any blog. Sometimes, you’ll need to make changes to the dimensions to fit your layout and design. It involves a few steps to reach your goal.

This post has looked at how to change WordPress’ featured image size. Let’s recap the steps:

  1. Determine your current featured image size.
  2. Set the featured image size either in WordPress or using code.
  3. Regenerate your featured images to apply the changes.

Are you considering changing WordPress’ featured image size? Tell us why in the comments section below!

Related posts

Choosing the Best WordPress Plugins for your Blog

WP Stack
3 years ago

How to Add Custom CSS to Your WordPress Website?

WP Stack
4 years ago

Top 5 SEO Plugins You Can Use for Your WordPress Website

WP Stack
4 years ago
Exit mobile version