How to Fix Featured Image Issues in WP

How to Fix Featured Image Issues in WP
Featured image not showing up on your WordPress site? This guide walks through six proven fixes, from clearing cache to checking theme support, so your thumbnails display correctly again.

Last updated: July 2026

TL;DR: A missing or broken featured image in WordPress usually comes down to one of six causes: a theme that ignores post thumbnails, a caching layer serving an old version of the page, a plugin conflict, an oversized image file, a lazy-load script, or a permissions issue on the uploads folder. Work through the fixes below in order and most sites are resolved within fifteen minutes.

If you have ever published a post only to find the thumbnail missing from your blog grid, you already know how frustrating it is to fix featured image not showing WordPress problems. The image looks fine in the media library, it is attached to the post, and yet nothing renders on the front end. At Canada Create™ we see this ticket land in our inbox every week, usually right after a theme update or a migration.

This guide walks through the most common causes in the order we actually check them when a client site breaks, plus the exact settings to look at inside the WordPress dashboard.

Quick Answer

In most cases, a featured image not displaying WordPress issue is caused by the active theme not calling the_post_thumbnail() in its template files, or by a caching plugin serving a stale version of the page. Clear your cache first, then confirm theme support for post thumbnails, then check for a plugin conflict.

Prerequisites

  • Admin access to the WordPress dashboard
  • FTP or File Manager access (for theme file checks)
  • A recent backup, in case you need to roll back a plugin update

Step 1: Clear Every Layer of Cache

Before touching any code, rule out caching. A page cache, a CDN cache, and your browser cache can all hide a perfectly good wordpress thumbnail not showing fix you already applied.

1a. Purge the page cache plugin

If you use a caching plugin, look for a “Clear Cache” or “Purge All” button in its settings menu and run it.

1b. Purge the CDN

If images are served through a CDN, purge that layer separately. Many hosts bundle their own CDN cache that a plugin-level purge will not touch.

1c. Hard refresh the browser

Use Ctrl+Shift+R (or Cmd+Shift+R on Mac) to bypass local browser cache and confirm the change actually took effect.

Step 2: Confirm Theme Support for Post Thumbnails

Some themes, especially lightweight or heavily customized ones, never register support for featured images in the first place.

2a. Check functions.php

Open your theme’s functions.php file and search for add_theme_support( 'post-thumbnails' ). If it is missing, the theme has no concept of a featured image at all.

2b. Check the template file

Even with theme support declared, the template file for that page (archive.php, single.php, or a block template) needs a call to the_post_thumbnail() or the equivalent Featured Image block. Missing markup is a common cause of a featured image upload error that is really a display error in disguise.

Step 3: Rule Out a Plugin Conflict

Security plugins, lazy-load plugins, and image optimization plugins are the three most common culprits behind a broken thumbnail.

3a. Deactivate lazy-load plugins temporarily

Lazy-loading scripts sometimes strip the src attribute before the browser paints the image. Disable the plugin and reload the page to see if the thumbnail reappears.

3b. Deactivate all plugins, then re-enable one by one

If the image reappears with all plugins off, reactivate them individually until the thumbnail disappears again. That plugin is your conflict.

Step 4: Check the Image File Itself

Sometimes the issue is not code at all, it is the file.

4a. Confirm the file uploaded completely

Open the image URL directly in a new tab. If it does not load, the upload failed or the file was deleted from the server.

4b. Reduce file size

Large uploads, especially PNGs over 5MB, can hit PHP memory limits mid-upload and leave a corrupted or partial file behind. Compress the image and re-upload as JPEG or WebP.

4c. Increase the PHP memory and upload limits

If large images are a recurring problem, ask your host to raise upload_max_filesize and memory_limit in PHP settings.

Step 5: Check File and Folder Permissions

Incorrect permissions on the /wp-content/uploads/ directory can silently block new files from being written or read, even though the media library shows a thumbnail preview.

5a. Set correct permissions

Folders should generally be set to 755 and files to 644. Anything more permissive is a security risk; anything more restrictive can block WordPress from generating image sizes.

Step 6: Regenerate Thumbnails

If the original image displays but the featured image size specifically does not, WordPress may never have generated that image size, often after a theme switch that changed thumbnail dimensions.

6a. Use a thumbnail regeneration tool

A dedicated image-regeneration plugin can rebuild every registered image size from the original upload without you having to re-upload anything manually.

Troubleshooting

Symptom Likely Cause Fix
Image shows in editor but not on live site Cache or CDN Purge all cache layers
Image missing across every post Theme lacks post-thumbnail support Add theme support in functions.php
Image only missing on archive pages Template file missing thumbnail call Edit archive.php or block template
Image blank after bulk import Broken attachment ID reference Reattach or re-upload featured image
Image loads slowly then disappears Lazy-load plugin conflict Disable lazy load on featured images
Want help choosing?

Canada Create™ builds and optimizes WordPress sites for Toronto businesses. Tell us your goals and we will recommend the right setup.

WooCommerce store owners run into a related version of this problem on product pages. If your shop also has trouble with product images or gallery filtering, our guide to the best WooCommerce filter plugins covers how product image handling interacts with filter plugins. We also cover broader platform reliability in our comparison of WP Engine vs Kinsta for managed hosting, since some caching-related image bugs are actually host-level configuration issues.

For sites that migrated recently, stale caching is even more likely. As we cover at Canada Create™, a fresh migration is one of the top three causes of this exact bug. If your site is also feeling sluggish since the move, see what actually slows down WordPress on shared hosting for a deeper look at server-side bottlenecks. Canada Create™ readers who manage multiple client sites often ask whether a full security audit should follow any theme change, and our answer is generally yes, so also check how to secure your WordPress website while you are in the dashboard.

If the fix involves editing template files and you are not comfortable in the theme editor, Canada Create™’s Toronto web design team handles this kind of maintenance work directly, and our Yorkville web design service covers ongoing WordPress support for small businesses in that neighbourhood too.

According to the official WordPress developer documentation, the_post_thumbnail() must be called within The Loop and will return nothing if no featured image is set or if the theme has not declared support. The WordPress.org support article on child themes is a useful reference if your fix requires overriding a parent theme template safely.

Frequently Asked Questions

Why does my featured image show in the WordPress editor but not on the live site?

This is almost always a caching issue. The editor pulls the image directly from the media library, bypassing any page cache or CDN cache that the public-facing site uses. Clear every cache layer, including your browser, before assuming it is a code problem.

Do I need a plugin to fix a featured image not showing WordPress issue?

No. Most fixes involve checking theme support, cache settings, and file permissions, none of which require installing new software. A regeneration plugin is only needed if WordPress never generated the correct image size.

Can a WordPress update cause featured images to stop showing?

Yes. Core updates occasionally change how image sizes are registered, and theme updates can remove or rename the template calls that render the thumbnail. Always check your site after any update.

Why does the featured image work on some posts but not others?

This pattern usually points to individual posts missing the featured image assignment entirely, or to a specific image file that failed to upload correctly. Open each affected post and confirm the featured image box in the sidebar actually shows a thumbnail.

Is a broken featured image bad for SEO?

Yes, indirectly. Missing thumbnails hurt click-through rate on category pages and in social shares, and broken image references can generate crawl errors. Canada Create™ treats featured image health as part of standard on-page SEO maintenance.

{
“@context”: “https://schema.org”,
“@type”: “Article”,
“headline”: “How to Fix Featured Image Issues in WP”,
“description”: “Featured image not showing up? Here are 6 proven fixes for featured image issues in WordPress, from cache to theme conflicts, explained step by step.”,
“datePublished”: “2026-07-21T09:00:00-04:00”,
“dateModified”: “2026-07-21T09:00:00-04:00”,
“author”: {
“@type”: “Person”,
“name”: “Canada Create™ Editorial Team”
},
“publisher”: {
“@type”: “Organization”,
“name”: “Canada Create™”,
“logo”: {
“@type”: “ImageObject”,
“url”: “https://canadacreate.com/wp-content/uploads/2024/03/canada-create-logo.png”
}
},
“mainEntityOfPage”: {
“@type”: “WebPage”,
“@id”: “https://canadacreate.com/fix-featured-image-wordpress/”
}
}

{
“@context”: “https://schema.org”,
“@type”: “BreadcrumbList”,
“itemListElement”: [
{
“@type”: “ListItem”,
“position”: 1,
“name”: “Home”,
“item”: “https://canadacreate.com/”
},
{
“@type”: “ListItem”,
“position”: 2,
“name”: “WordPress”,
“item”: “https://canadacreate.com/category/wordpress/”
},
{
“@type”: “ListItem”,
“position”: 3,
“name”: “How to Fix Featured Image Issues in WP”,
“item”: “https://canadacreate.com/fix-featured-image-wordpress/”
}
]
}

{
“@context”: “https://schema.org”,
“@type”: “FAQPage”,
“mainEntity”: [
{
“@type”: “Question”,
“name”: “Why does my featured image show in the WordPress editor but not on the live site?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “This is almost always a caching issue. The editor pulls the image directly from the media library, bypassing any page cache or CDN cache that the public-facing site uses. Clear every cache layer, including your browser, before assuming it is a code problem.”
}
},
{
“@type”: “Question”,
“name”: “Do I need a plugin to fix a featured image not showing WordPress issue?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “No. Most fixes involve checking theme support, cache settings, and file permissions, none of which require installing new software. A regeneration plugin is only needed if WordPress never generated the correct image size.”
}
},
{
“@type”: “Question”,
“name”: “Can a WordPress update cause featured images to stop showing?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Yes. Core updates occasionally change how image sizes are registered, and theme updates can remove or rename the template calls that render the thumbnail. Always check your site after any update.”
}
},
{
“@type”: “Question”,
“name”: “Why does the featured image work on some posts but not others?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “This pattern usually points to individual posts missing the featured image assignment entirely, or to a specific image file that failed to upload correctly. Open each affected post and confirm the featured image box in the sidebar actually shows a thumbnail.”
}
},
{
“@type”: “Question”,
“name”: “Is a broken featured image bad for SEO?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Yes, indirectly. Missing thumbnails hurt click-through rate on category pages and in social shares, and broken image references can generate crawl errors. Canada Create™ treats featured image health as part of standard on-page SEO maintenance.”
}
}
]
}

{
“@context”: “https://schema.org”,
“@type”: “HowTo”,
“name”: “How to Fix Featured Image Issues in WordPress”,
“step”: [
{
“@type”: “HowToStep”,
“name”: “Clear every layer of cache”,
“text”: “Purge the page cache plugin, purge the CDN, and hard refresh your browser to rule out a stale cached version of the page.”,
“url”: “https://canadacreate.com/fix-featured-image-wordpress/#step-1-clear-every-layer-of-cache”
},
{
“@type”: “HowToStep”,
“name”: “Confirm theme support for post thumbnails”,
“text”: “Check functions.php for add_theme_support and confirm the template file calls the_post_thumbnail().”,
“url”: “https://canadacreate.com/fix-featured-image-wordpress/#step-2-confirm-theme-support-for-post-thumbnails”
},
{
“@type”: “HowToStep”,
“name”: “Rule out a plugin conflict”,
“text”: “Deactivate lazy-load plugins and test, then deactivate all plugins and reactivate one by one to isolate the conflict.”,
“url”: “https://canadacreate.com/fix-featured-image-wordpress/#step-3-rule-out-a-plugin-conflict”
},
{
“@type”: “HowToStep”,
“name”: “Check the image file itself”,
“text”: “Confirm the file uploaded completely, reduce file size if needed, and increase PHP memory and upload limits for large images.”,
“url”: “https://canadacreate.com/fix-featured-image-wordpress/#step-4-check-the-image-file-itself”
},
{
“@type”: “HowToStep”,
“name”: “Check file and folder permissions”,
“text”: “Set folders to 755 and files to 644 in the uploads directory to ensure WordPress can read and write image files.”,
“url”: “https://canadacreate.com/fix-featured-image-wordpress/#step-5-check-file-and-folder-permissions”
},
{
“@type”: “HowToStep”,
“name”: “Regenerate thumbnails”,
“text”: “Use a thumbnail regeneration tool to rebuild every registered image size from the original upload.”,
“url”: “https://canadacreate.com/fix-featured-image-wordpress/#step-6-regenerate-thumbnails”
}
]
}

Share This Post
Need quick help? Let’s Talk About Your Growth

For a faster response, call (416) 273-9030. Otherwise, fill out the form below and our team will contact you.

This field is for validation purposes and should be left unchanged.
Select the Services(Required)
Google reviews

What our clients say about Canada Create™

EXCELLENT
Google star 1Google star 2Google star 3Google star 4Google star 5
Based on 97 reviews
Posted on Google Google
lazer Runner of Aurora profile picture
lazer Runner of Aurora
Google star 1Google star 2Google star 3Google star 4Google star 5
We’ve had a great experience working with Canada Create for our SEO and digital marketing. They have made a noticeable difference in our Google rankings and online visibility, which has been very important for our business. As the owner of Lazer Runner in Aurora, I highly recommend Canada Create to any business looking to improve their online presence and grow through Google. They are professional, knowledgeable, responsive, and truly care about their clients’ success. Thank you, Canada Create, for your great work and continued support! Lazer Runner Of Aurora
Posted on Google Google
Rozbeh Kamran-Disfani profile picture
Rozbeh Kamran-Disfani
Google star 1Google star 2Google star 3Google star 4Google star 5
Canada Create has been an excellent marketing and branding partner for our dental practice. Their understanding of local SEO, digital marketing, social media, content creation, Google visibility, and AI optimization really stood out to us. A dental practice depends heavily on trust, reputation, patient experience, and being discoverable when someone is searching for a dentist. Canada Create understands how to bring those pieces together and communicate the quality of a practice naturally. I would highly recommend Canada Create to dentists, dental clinics, and other healthcare professionals looking to improve their online presence, local search visibility, branding, and organic growth.
Posted on Google Google
Amir Kasra Mesgarpour Tousi profile picture
Amir Kasra Mesgarpour Tousi
Google star 1Google star 2Google star 3Google star 4Google star 5
I had a great experience working with this business. They helped me build my tutoring website from scratch and guided me through the entire process. I knew nothing about how the process worked, but they were professional, patient, and incredibly helpful. They took the time to understand what I wanted, handled the setup and design, and made sure everything worked properly. I’m very happy with the final result and would definitely recommend them to anyone who needs help creating a professional website or getting their business online.
Posted on Google Google
khatereh mokhtari profile picture
khatereh mokhtari
Google star 1Google star 2Google star 3Google star 4Google star 5
Canada Create has been doing an amazing job managing our social media. Their team consistently creates professional, creative posts and stories for our Instagram, Facebook, and TikTok, and the quality of the content has honestly exceeded our expectations. What impresses us most is that they don’t just post for the sake of posting. The content is well thought out, visually engaging, and represents our business professionally across every platform. They understand our brand and consistently come up with fresh ideas without us having to manage the process. We’re extremely happy with the work Canada Create has done for us and highly recommend their team to any business looking for professional social media management and content creation.
Posted on Google Google
KIIA MUSIC profile picture
KIIA MUSIC
Google star 1Google star 2Google star 3Google star 4Google star 5
As an influencer, I've gotten multiple collab opportunities through Canada Create, and every experience has been well-organized and mutually beneficial. They genuinely care about building long-term relationships between businesses and creators, rather than one-time promos. Their expertise in SEO, social media marketing, influencer marketing, content strategy, Instagram growth, YouTube marketing, and brand awareness makes them an excellent partner for companies that want real engagement. Whether you're a local business trying to improve your online presence, or an influencer looking to work with reputable brands, I strongly recommend connecting with Canada Create Agency
Posted on Google Google
Elanaz Ghasemi profile picture
Elanaz Ghasemi
Google star 1Google star 2Google star 3Google star 4Google star 5
I've worked with Canada Create on several influencer campaigns, and they consistently bring high-quality collab opportunities that actually fit with my audience. Unlike agencies who only push paid promotions, they understand organic social media marketing and long-term brand growth. Their team makes collaborations smooth, professional, and beneficial for both businesses and creators. If you're an influencer looking for consistent brand partnerships on Instagram, YouTube, or TikTok, I highly recommend reaching out to Canada Create. And if you're a business that wants authentic influencer marketing, content creation, and stronger organic reach instead of just chasing ads, they're one of the best marketing agencies I've worked with in the GTA.
Posted on Google Google
Zohreh Talebi profile picture
Zohreh Talebi
Google star 1Google star 2Google star 3Google star 4Google star 5
We hired Canada Create to help strengthen the online marketing for Marvel Car Clinic and the results have been very positive. They developed our new website and managed the Google Ads strategy around our main automotive services including paint protection film (PPF), vehicle wraps and ceramic coating. The biggest improvement for me has been the overall quality of our online presence. Customers can now clearly see what we offer, the website is much more professional and our advertising is bringing relevant people directly to the services they are searching for. Their team understands conversion and lead generation, not just design. Everything from the website layout to the advertising campaigns feels like it was created with the goal of getting more customers. Great communication, professional work and strong results. I would recommend Canada Create to any Toronto or GTA business looking for Google Ads management, website development and digital marketing.
Posted on Google Google
Hossein Esmaeili profile picture
Hossein Esmaeili
Google star 1Google star 2Google star 3Google star 4Google star 5
We’ve had a great experience working with Canada Create on the digital marketing for Marvel Car Clinic. They completely improved our online presence with a professionally designed new website and a much stronger Google Ads strategy. Our business specializes in car wraps, paint protection film (PPF), ceramic coating and automotive protection services, so attracting the right type of customer is extremely important. The Canada Create team took the time to understand our services, our target market and what actually makes a customer contact us. Since launching the new website and Google Ads campaigns, we’ve seen a noticeable improvement in the quality of inquiries coming in. The website looks professional, is easy to navigate and presents our car wrap, PPF and ceramic coating services much better than before. What we appreciate most is that they focus on results instead of simply running ads. Communication has been great, changes are handled quickly and the team is always looking for ways to improve the campaigns. If you’re looking for a digital marketing agency in Toronto for Google Ads, website design and lead generation, I would definitely recommend Canada Create.