Guides / Product image SEO
WooCommerce Product Image SEO
For an online store, images aren’t decoration — they’re ranking signals, Shopping thumbnails, Google Images entries, and a major input to page speed. Here’s how to get WooCommerce product images working for SEO instead of against it.
Write descriptive alt text
Alt text is how search engines (and screen readers) understand an image. Describe the product specifically, including distinguishing attributes:
<img src="trailmaster-backpack-blue.webp"
alt="TrailMaster 30L waterproof backpack in blue, side view">
Write for a person who can’t see the image. Don’t stuff keywords or repeat the same alt across every photo.
Use meaningful file names
trailmaster-backpack-blue.webp tells Google far more than
IMG_4821.jpg. Name files descriptively before upload; renaming
after the fact in WordPress is fiddly.
Size and compress for speed
- Resolution: sharp on retina (often 1000–2000px long edge) without being needlessly huge.
- Format: serve modern formats like WebP or AVIF.
- Compression: compress every image; large product photos are the most common Core Web Vitals culprit.
- Dimensions: always set
widthandheight(or aspect-ratio) so the browser reserves space and avoids layout shift (CLS). - Lazy-load below-the-fold images, but eager-load the main product image (the likely LCP element).
Reference images in schema and feeds
The same image needs to appear in three places, consistently:
- The product page
<img>(with alt text) - Your Product schema
imageproperty - Your shopping feed
image_link
"image": [
"https://yourstore.com/wp-content/uploads/trailmaster-backpack-blue.webp"
]
Use high-quality, non-placeholder images that meet each channel’s minimum size, or Merchant Center will disapprove the item.
Add an image sitemap signal
Make sure product images are discoverable — either via image entries in your sitemap or simply by having them in crawlable HTML with good alt text. This helps Google Images, a real traffic source for visual products.
Multiple angles and variant images
Provide several images per product (angles, in-use, scale) and ensure each variation references its correct image. A blue variant showing a red photo confuses shoppers and shopping channels alike — see variable products.