WordPress Featured Image Not Showing? 8 Proven Fixes [2026]

Key Takeaways

  • WordPress featured images appear in blog listings, archive pages, search engine snippets, and social media previews.
  • The absence of a featured image is often due to eight identifiable issues, including HTTP upload errors and theme support.
  • WordPress automatically sets PHP memory to 40MB for single sites, which can be increased to 256MB to resolve upload errors.
  • The Nexter Extension (Free, v4.6.7) allows users to add a custom thumbnail column in the admin posts list for easier visibility of featured images.
  • Images should be at least 1200 x 628 pixels for optimal rendering in Facebook and LinkedIn link previews according to Meta for Developers sharing guidelines.

When the WordPress featured image not showing issue hits, it removes one of the most visible elements on your post or page. Featured images appear in blog listings, archive pages, search engine snippets, and social media previews, making their absence an immediate problem for engagement and SEO.

A WordPress featured image not showing means the image assigned to a post or page is not rendering on the front end, in the editor sidebar, or in social media link previews.

The cause is almost always one of eight identifiable issues: an HTTP upload error, a theme that does not support featured images, a conflicting plugin, lazy loading interference, a disabled editor panel, insufficient user permissions, a missing admin column, or an incorrect image size setting.

All dashboard paths and code snippets in this article were verified against WordPress 6.9.4 in May 2026.

Table Of Contents

What Causes WordPress Featured Image Not Showing?

Wordpress featured image not showing issue wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor

Featured images fail for different reasons depending on where the issue appears. The table below maps each symptom to its cause and the corresponding fix in this guide.

SymptomRoot CauseFix
HTTP error appears during image uploadFile too large or PHP memory limit too lowFix 1
Image is set but never renders on the pageTheme does not support featured images, or plugin conflictFix 2
Image loads on scroll but not on first loadLazy loading applied to the featured imageFix 3
No “Featured Image” panel in the editor sidebarPanel disabled in editor preferencesFix 4
Cannot upload or change the featured imageUser role lacks the upload_files capabilityFix 5
Admin posts list shows no thumbnail columnWordPress does not show thumbnails by defaultFix 6
Archive or blog page shows no thumbnailsDisplay Featured Image not enabled in the block settingFix 7
Image appears cropped, stretched, or too smallRegistered image sizes do not match theme requirementsFix 8

How to Fix WordPress Featured Image Not Showing (8 Methods)

In our experience reviewing support requests from The Plus Addons for Elementor users, plugin conflicts and lazy loading settings are the two most frequently reported causes of featured images not displaying. Start with the fix that matches the symptom you see in the table above.

1. Fix HTTP Error When Uploading a Featured Image

If WordPress throws an HTTP error the moment you try to upload an image, there are two root causes: the image file is too large, or the PHP memory limit is too low for the server to handle the upload.

Fix 1.1, Reduce the image file size

  1. Convert the image to WebP or JPEG format before uploading. Both produce smaller files than PNG for photographs.
  2. Compress the image using a free tool such as TinyPNG. Upload the image, download the compressed file, then upload that as the featured image.
  3. Retry the upload in WordPress.

Fix 1.2, Increase the PHP memory limit

WordPress automatically sets PHP memory to 40MB for single sites, according to the WordPress developer documentation. Large image files may exceed this during upload processing. Increasing the limit to 256MB resolves most upload errors caused by memory constraints.

Via wp-config.php:

  1. Connect to your server via FTP or cPanel File Manager.
  2. Open wp-config.php in the WordPress root directory.
  3. Find the line define(‘WP_MEMORY_LIMIT’, ’64M’); and update the value to 256M:
  1. If that line does not exist, add it above the line that reads /* That’s all, stop editing! */
  2. Save the file and retry the upload.

Via .htaccess (Apache servers only):

  1. Open the . htaccess file in your WordPress root directory.
  2. Add this line at the bottom of the file:
  1. Save the file and retry the upload.
Increase php memory limit wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor

2. Check Theme Support and Disable Conflicting Plugins

If no HTTP error appeared and the featured image is set but not visible on the front end, the two most common causes are a theme that does not declare featured image support, or a plugin that is interfering with image rendering.

Check your theme for featured image support:

  1. Go to Tools > Site Health in your WordPress dashboard. The health check surfaces common configuration problems including missing theme features.
  2. If no issue appears there, check the theme’s functions.php file for the line add_theme_support( ‘post-thumbnails’ ). If it is missing, the theme does not support featured images natively.
  3. Contact the theme developer to request support, or switch to a theme that includes add_theme_support( ‘post-thumbnails’ ).
Recommended improvements wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor

Identify a conflicting plugin:

  1. First, update all plugins. Outdated plugins are a common cause of image rendering issues.
  2. If the issue persists, deactivate all plugins.
  3. Reactivate them one at a time, checking whether the featured image appears after each reactivation.
  4. The plugin that causes the image to disappear upon reactivation is the conflict. Update it, contact the developer, or replace it.

3. Disable Lazy Loading for the Featured Image

Lazy loading delays image rendering until the visitor scrolls to that position on the page. Most caching and performance plugins apply lazy loading to all images by default, including featured images that should load immediately at the top of the page.

  1. Open your active caching or performance plugin settings (WP Rocket, Perfmatters, LiteSpeed Cache, and similar).
  2. Find the lazy loading setting and check whether it allows excluding specific images or CSS classes.
  3. If an exclusion option is available, add the CSS class wp-post-image (WordPress’s default featured image class) to the exclusion list.
  4. If no exclusion option exists, disable plugin-level lazy loading entirely. WordPress 6.3 and later already applies native lazy loading via the loading=”lazy” attribute on appropriate images. Stacking a plugin on top of this native behavior is a common cause of conflicts.
  5. Save settings, clear the site cache, and reload the page to confirm the featured image renders on first load.

4. Enable the Featured Image Panel in Your Post Editor

If you cannot see the Featured Image tab in the post editor sidebar, the panel has been turned off in your editor preferences. This is a per-user setting and does not affect the front end, but it prevents you from setting or changing the featured image.

  1. Open the post or page where you want to add a featured image.
  2. Click the three-dot menu (⋮) at the top right of the block editor.
  3. Select Preferences.
Configure wordpress dashboard screen options wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor
  1. Under the Panels tab, enable Featured Image.
Enable the featured image option wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor
  1. The Featured Image panel now appears in the right sidebar. Click Set featured image and select or upload your image.
Set featured image wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor

If the Featured Image option is not available in Preferences at all, your theme likely does not declare add_theme_support(‘post-thumbnails’). Follow Fix 2 to resolve this at the theme level.

5. Fix User Role Permissions for Uploading Featured Images

If a specific user cannot set or change the featured image on a post, they likely lack the upload_files capability. WordPress’s Subscriber and Contributor roles do not include this capability by default. Changing the role to Author or higher grants immediate media library access.

Change the user’s role (no plugin required):

  1. Go to Users > All Users in your WordPress dashboard.
  2. Click the username of the affected user.
  3. Scroll to the Role dropdown and change it to Author, Editor, or Administrator depending on the required access level.
  4. Click Update User.

Change user role permission wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor

6. Show Featured Image Thumbnails in the Admin Posts List

WordPress does not show featured image thumbnails in the admin posts list by default. If you want to confirm which posts have featured images assigned without opening each post individually, add a custom thumbnail column using Nexter Extension (Free, v4.6.7).

  1. Install and activate Nexter Extension if not already active. Go to Nexter Extension > Code Snippets in your WordPress dashboard.
Open code snippets from nexter wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor
  1. Click Create New.
Create new snippet wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor
  1. Add the following PHP code in the snippet editor:
  1. Toggle Activate and click Create.
  2. Go to Posts > All Posts. A Featured Image thumbnail column now appears next to the Title column.

7. Fix Featured Images Not Showing on Blog Archive Pages

If individual posts display the featured image correctly but your blog archive or homepage shows no thumbnails, the issue is in how the archive page block is configured, not the images themselves.

  1. Go to Pages > All Pages and open the page used as your blog or posts archive.
  2. In the block editor, click the + icon and add the Latest Posts block.
Fixing featured image not showing on a blog post gallery page wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor
  1. Click the Latest Posts block to open its settings in the right sidebar.
  2. Enable Display Featured Image.
Enable display featured image wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor
  1. Adjust the image alignment and size settings to fit your layout.
  2. Click Update to save the page.

8. Fix the Featured Image Displaying at the Wrong Size

If the featured image is visible but appears cropped, stretched, or misaligned, the registered image sizes in WordPress do not match what your theme expects. WordPress generates resized copies of each uploaded image based on the sizes set under Settings > Media. If those sizes are too small for your theme’s featured image slot, images will not render correctly.

  1. Go to Settings > Media in your WordPress dashboard.
Edit the default image size manually wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor
  1. Update the Thumbnail size, Medium size, and Large size fields to match your theme’s expected featured image dimensions.
  2. Click Save Changes.
  3. To regenerate previously uploaded images at the new sizes, install the free Regenerate Thumbnails plugin from WordPress.org and run it once from Tools > Regenerate Thumbnails.

WordPress does not mandate a universal featured image size. The correct dimensions depend on your theme. For social media sharing compatibility, according to the Meta for Developers sharing guidelines, images should be at least 1200 x 628 pixels for optimal rendering in Facebook and LinkedIn link previews.

20 checklist for wordpress site maintenance wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor
Do you Manage WordPress Websites? Download Our FREE E-Book of 20+ Checklist for WordPress Site Maintenance. ​
[contact-form-7 id="125716"]

Which Fix Should You Try for WordPress Featured Image Not Showing?

Match your symptom to the correct fix:

  • HTTP error during upload → Fix 1 (reduce file size or increase PHP memory)
  • Image is set but not visible on the page → Fix 2 (theme support or plugin conflict)
  • Image loads late or on scroll → Fix 3 (disable lazy loading)
  • No Featured Image panel in the editor sidebar → Fix 4 (enable in editor Preferences)
  • Cannot upload or change the image → Fix 5 (user role permissions)
  • Admin posts list has no thumbnail column → Fix 6 (custom code via Nexter Extension)
  • Archive or blog page shows no thumbnails → Fix 7 (Latest Posts block setting)
  • Image is visible but the wrong size → Fix 8 (Media settings and Regenerate Thumbnails)

Once the featured image is displaying correctly, you can control how it appears across your entire site. The Elementor Blog Post Layout widget from The Plus Addons for Elementor (Free) by POSIMYTH lets you build custom archive pages, blog grids, and post listings with full control over featured image size, aspect ratio, hover effects, and overlay styles.

Check out the Complete List of 120+ Widgets and Extensions here. Start building your dream website without coding!

With 120+ Elementor widgets available, The Plus Addons for Elementor by POSIMYTH lets you build, customize, and enhance your WordPress website’s design and functionality without writing code.

About the Author

Photo of Aditya Sharma CMO of The Plus Addons for Elementor
CMO · The Plus Addons for Elementor · 7 years experience

He has spent years in the WordPress ecosystem building, breaking, and optimizing sites until they actually perform. He works at the intersection of speed, growth, and usability, helping creators ship websites that load fast and convert. An active WordPress community contributor sharing through tools, tutorials, and direct collaboration. Tested practice, not theory.

WordPressElementorn8nAIClaudeAutomationServer

Related Frequently Asked Questions

Why isn't my WordPress featured image showing up?

A missing featured image can stem from several issues, such as an HTTP error during upload, a theme that lacks support for featured images, or conflicts with plugins. For instance, if you encounter an HTTP error, it may indicate that your image file is too large or your PHP memory limit is too low. Increasing the PHP memory limit to 256MB can resolve many upload issues.

How do I check if my theme supports featured images?

To verify if your theme supports featured images, navigate to Tools > Site Health in your WordPress dashboard. This tool will highlight any configuration problems, including missing theme features. If the theme does not support featured images, you may need to contact the developer or switch to a compatible theme.

What should I do if my featured image is loading late due to lazy loading?

If your featured image only appears after scrolling, it may be due to lazy loading settings in your caching or performance plugin. To fix this, check your plugin settings for an option to exclude specific images or CSS classes. Adding the CSS class 'wp-post-image' to the exclusion list can ensure your featured image loads immediately.

How can I enable the featured image panel in the post editor?

If the Featured Image panel is missing in your post editor, it may have been disabled in your editor preferences. Open the post editor, click the three-dot menu at the top right, select Preferences, and enable the Featured Image option under the Panels tab. This will allow you to set or change the featured image easily.

What are common mistakes when setting up featured images in WordPress?

A common mistake is not checking user role permissions, which can prevent certain users from uploading or changing featured images. By default, the Subscriber and Contributor roles lack the 'upload_files' capability. Changing the user role to Author or higher will grant the necessary access to manage featured images.

How do I fix featured images displaying at the wrong size?

If your featured images appear cropped or stretched, it likely means the registered image sizes do not match your theme's requirements. Go to Settings > Media in your WordPress dashboard and adjust the Thumbnail, Medium, and Large size fields to align with your theme's expected dimensions. Regenerating thumbnails with the Regenerate Thumbnails plugin can also help apply these new settings.

Last reviewed: May 5, 2026