What Are The Most Common Image Sizes in WordPress Media Settings (2025 Guide + SEO Tips)

Quick Read TL;DR

Updated for 2025, this friendly Aussie guide explains WordPress’s default image sizes—thumbnail (150×150 px), medium (up to 300 px), medium_large (768 px), large (1024 px) and full size. You’ll also get modern recommendations for featured, header and logo images, plus expert SEO tips: descriptive file names, alt text, responsive srcset handling, compression, lazy‑load, and structured data. By the end you’ll know how to tweak your media settings, add custom image sizes, regenerate older images, and boost both the performance and search visibility of your WordPress site.

Quick Overview

If you’re managing a WordPress site in 2025, understanding image sizes is key to optimal performance and better SEO. The current defaults include thumbnail (150×150 px), medium (max 300×300 px), medium_large (768 px wide), large (max 1024×1024 px) and your full‑size original. In addition, recommended dimensions for featured, header, logo and social‑share images keep things visually crisp. This guide breaks it all down in an easy‑read style, with SEO best practice tips to help you optimise WordPress images and lift your site’s visibility.

WordPress Default Image Sizes in 2025

WordPress automatically creates these sizes upon image upload:

Only new uploads generate updated sizes if you adjust settings. To apply to old ones, you’ll need to regenerate thumbnails

Recommended Sizes (Updated 2025)

Here’s where image types meet context:

How to Update Your WordPress Media Settings

Navigate to Settings → Media in your dashboard:

Add Custom Image Sizes (When You Need More Control)

To create sizes for sliders, galleries or special layouts, edit your functions.php (best practice: within a child theme):

add_image_size('custom-size', 600, 400, true);

Then call it in your theme:

the_post_thumbnail('custom-size');

Finally, regenerate thumbnails so older uploads honour the new size

Regenerating Thumbnails for Existing Images

Changing settings won’t affect old uploads unless you regenerate.

Responsive Images & srcset Support

Since WP 4.4, WordPress auto‑includes srcset and sizes attributes so browsers load the most appropriate size per device

SEO Best Practice Tips for Images

Optimising image SEO helps both user experience and ranking:

  1. Use descriptive file names: e.g. best-wordpress-image-sizes.jpg rather than IMG1234.jpg
  2. Add meaningful alt text: key for accessibility and readable by search bots
  3. Pick the right file format: JPEG for photos, PNG for transparency, WebP for best compression, SVG for icons
  4. Compress images appropriately: before uploading, or via plugins like ShortPixel, Smush or TinyPNG
  5. Enable lazy‑loading: only load images as the user scrolls — improves initial page load
  6. Specify width and height attributes or CSS to avoid layout shift — helps SEO performance metrics
  7. Use image sitemaps and ensure images are embedded using HTML <img> (not CSS backgrounds) for proper indexing
  8. Consider structured data and social card tags so shared links look great and may show as rich results

8. Practical Examples & Layout Guidance

Here’s a table to illustrate recommended sizes:

Use Case Recommended Size Why It Matters
Thumbnail 150 × 150 px Visual previews in archives
Medium / content Up to 300 × 300 px In‑content visuals without slowing site
Medium‑Large 768 px wide Responsive breakpoint use
Large Up to 1024 × 1024 px For wider layout sections
Featured / social 1200 × 628 px Social sharing and crisp visuals
Header / Hero 1920 × 1080 px Full‑width impact visuals
Logo ~250 × 100 px Crisp yet lightweight

Additional Angle: SEO & Performance in Your Hosting & Theme

Wrap‑Up

In short, WordPress in 2025 still uses the classic default image sizes, but now includes a key responsive size (medium_large at 768 px). You can customise these via settings or code, but must regenerate thumbnails for older content. By using recommended sizes (like 1200 × 628 px for featured images and 1920 × 1080 px for headers), serving responsive images with srcset, and applying SEO best practice to file names, alt text, compression and lazy‑loading, your WordPress images will not only look great but also help performance and search visibility.

Treat your images as vital content assets — they’re not just decoration, they help your SEO and user experience. Do it right, and your visitors (and search bots) will notice.