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.
What Causes WordPress Featured Image Not Showing?
![WordPress Featured Image Not Showing Issue | The Plus Addons for Elementor Wordpress featured image not showing issue wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2024/09/WordPress-Featured-Image-Not-Showing-Issue.png)
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.
| Symptom | Root Cause | Fix |
|---|---|---|
| HTTP error appears during image upload | File too large or PHP memory limit too low | Fix 1 |
| Image is set but never renders on the page | Theme does not support featured images, or plugin conflict | Fix 2 |
| Image loads on scroll but not on first load | Lazy loading applied to the featured image | Fix 3 |
| No “Featured Image” panel in the editor sidebar | Panel disabled in editor preferences | Fix 4 |
| Cannot upload or change the featured image | User role lacks the upload_files capability | Fix 5 |
| Admin posts list shows no thumbnail column | WordPress does not show thumbnails by default | Fix 6 |
| Archive or blog page shows no thumbnails | Display Featured Image not enabled in the block setting | Fix 7 |
| Image appears cropped, stretched, or too small | Registered image sizes do not match theme requirements | Fix 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
- Convert the image to WebP or JPEG format before uploading. Both produce smaller files than PNG for photographs.
- Compress the image using a free tool such as TinyPNG. Upload the image, download the compressed file, then upload that as the featured image.
- 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:
- Connect to your server via FTP or cPanel File Manager.
- Open wp-config.php in the WordPress root directory.
- Find the line define(‘WP_MEMORY_LIMIT’, ’64M’); and update the value to 256M:
define('WP_MEMORY_LIMIT', '256M');
- If that line does not exist, add it above the line that reads /* That’s all, stop editing! */
- Save the file and retry the upload.
Via .htaccess (Apache servers only):
- Open the . htaccess file in your WordPress root directory.
- Add this line at the bottom of the file:
php_value memory_limit 256M
- Save the file and retry the upload.
![Increase PHP memory limit | The Plus Addons for Elementor Increase php memory limit wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2024/09/Increase-PHP-memory-limit.png)
Working with a low PHP memory limit and unable to upload your featured image? Learn How to Increase WordPress PHP Memory Limit in 4 Easy Ways.
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:
- Go to Tools > Site Health in your WordPress dashboard. The health check surfaces common configuration problems including missing theme features.
- 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.
- Contact the theme developer to request support, or switch to a theme that includes add_theme_support( ‘post-thumbnails’ ).
![Recommended improvements | The Plus Addons for Elementor Recommended improvements wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2024/09/Recommended-improvements.png)
Identify a conflicting plugin:
- First, update all plugins. Outdated plugins are a common cause of image rendering issues.
- If the issue persists, deactivate all plugins.
- Reactivate them one at a time, checking whether the featured image appears after each reactivation.
- The plugin that causes the image to disappear upon reactivation is the conflict. Update it, contact the developer, or replace it.
If unused plugins and widgets are affecting your website performance and functionality, manage it by learning How to Disable & Hide Unused Elementor widgets.
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.
- Open your active caching or performance plugin settings (WP Rocket, Perfmatters, LiteSpeed Cache, and similar).
- Find the lazy loading setting and check whether it allows excluding specific images or CSS classes.
- If an exclusion option is available, add the CSS class wp-post-image (WordPress’s default featured image class) to the exclusion list.
- 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.
- 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.
- Open the post or page where you want to add a featured image.
- Click the three-dot menu (⋮) at the top right of the block editor.
- Select Preferences.
![Configure WordPress Dashboard Screen Options | The Plus Addons for Elementor Configure wordpress dashboard screen options wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2024/09/Configure-WordPress-Dashboard-Screen-Options.png)
- Under the Panels tab, enable Featured Image.
![Enable the Featured Image option | The Plus Addons for Elementor Enable the featured image option wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2024/09/Enable-the-Featured-Image-option.png)
- The Featured Image panel now appears in the right sidebar. Click Set featured image and select or upload your image.
![Set Featured Image | The Plus Addons for Elementor Set featured image wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2024/09/Set-Featured-Image.png)
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):
- Go to Users > All Users in your WordPress dashboard.
- Click the username of the affected user.
- Scroll to the Role dropdown and change it to Author, Editor, or Administrator depending on the required access level.
- Click Update User.
![Change User Role Permission | The Plus Addons for Elementor Change user role permission wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2024/09/Change-User-Role-Permission.png)
Struggling with the no access error to your WordPress dashboard? Check out 4 Working Ways to Fix ‘ Sorry you are not allowed access to this page’ WordPress Error.
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).
- Install and activate Nexter Extension if not already active. Go to Nexter Extension > Code Snippets in your WordPress dashboard.
![Open code snippets from Nexter | The Plus Addons for Elementor Open code snippets from nexter wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2025/05/Open-code-snippets-from-Nexter-Extension.png)
- Click Create New.
![Create new snippet | The Plus Addons for Elementor Create new snippet wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2025/05/Create-new-snippet.png)
- Add the following PHP code in the snippet editor:
add_filter( 'manage_posts_columns', function ( $columns ) {
$move_after = 'title';
$move_after_key = array_search( $move_after, array_keys( $columns ), true );
$first_columns = array_slice( $columns, 0, $move_after_key + 1 );
$last_columns = array_slice( $columns, $move_after_key + 1 );
return array_merge(
$first_columns,
array(
'featured_image' => __( 'Featured Image' ),
),
$last_columns
);
} );
add_action( 'manage_posts_custom_column', function ( $column ) {
if ( 'featured_image' === $column ) {
the_post_thumbnail( array( 300, 80 ) );
}
} );
- Toggle Activate and click Create.
- 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.
- Go to Pages > All Pages and open the page used as your blog or posts archive.
- In the block editor, click the + icon and add the Latest Posts block.
![Fixing Featured Image Not Showing on a Blog Post Gallery Page | The Plus Addons for Elementor 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](https://theplusaddons.com/wp-content/uploads/2024/09/Fixing-Featured-Image-Not-Showing-on-a-Blog-Post-Gallery-Page.png)
- Click the Latest Posts block to open its settings in the right sidebar.
- Enable Display Featured Image.
![Enable Display Featured Image | The Plus Addons for Elementor Enable display featured image wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2024/09/Enable-Display-Featured-Image.png)
- Adjust the image alignment and size settings to fit your layout.
- 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.
- Go to Settings > Media in your WordPress dashboard.
![edit the default image size manually | The Plus Addons for Elementor Edit the default image size manually wordpress featured image not showing? 8 proven fixes [2026] from the plus addons for elementor](https://theplusaddons.com/wp-content/uploads/2024/09/edit-the-default-image-size-manually.png)
- Update the Thumbnail size, Medium size, and Large size fields to match your theme’s expected featured image dimensions.
- Click Save Changes.
- 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.
Cannot upload a particular image file size to your WordPress site? Know How to Increase the Maximum File Upload Size in WordPress.
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.
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.






